mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-03 05:21:25 +12:00
tests: Fix failing test and improve msvc setup
Some checks are pending
Generate Translation Template / Generate Translation Template (push) Waiting to run
Build RPCS3 / RPCS3 Linux ubuntu-24.04 gcc (push) Waiting to run
Build RPCS3 / RPCS3 Linux ubuntu-24.04-arm clang (push) Waiting to run
Build RPCS3 / RPCS3 Linux ubuntu-24.04 clang (push) Waiting to run
Build RPCS3 / RPCS3 Windows (push) Waiting to run
Some checks are pending
Generate Translation Template / Generate Translation Template (push) Waiting to run
Build RPCS3 / RPCS3 Linux ubuntu-24.04 gcc (push) Waiting to run
Build RPCS3 / RPCS3 Linux ubuntu-24.04-arm clang (push) Waiting to run
Build RPCS3 / RPCS3 Linux ubuntu-24.04 clang (push) Waiting to run
Build RPCS3 / RPCS3 Windows (push) Waiting to run
This commit is contained in:
parent
947c6ec3e1
commit
b25276deec
4 changed files with 176 additions and 147 deletions
|
@ -23,9 +23,9 @@ namespace rsx
|
|||
Ty* _data = _local_capacity ? reinterpret_cast<Ty*>(_local_storage) : nullptr;
|
||||
u32 _size = 0;
|
||||
|
||||
inline u64 offset(const_iterator pos)
|
||||
inline u32 offset(const_iterator pos)
|
||||
{
|
||||
return (_data) ? u64(pos - _data) : 0ull;
|
||||
return (_data) ? u32(pos - _data) : 0u;
|
||||
}
|
||||
|
||||
bool is_local_storage() const
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue