mirror of
https://github.com/RPCS3/rpcs3.git
synced 2026-06-04 22:25:01 -06:00
Fix warning (vm::reservation_update)
This commit is contained in:
parent
841d8955de
commit
ef0196d791
@ -111,7 +111,7 @@ namespace vm
|
|||||||
inline void reservation_update(u32 addr, u32 size, bool lsb = false)
|
inline void reservation_update(u32 addr, u32 size, bool lsb = false)
|
||||||
{
|
{
|
||||||
// Update reservation info with new timestamp
|
// Update reservation info with new timestamp
|
||||||
reservation_acquire(addr, size) = (__rdtsc() & -2) | lsb;
|
reservation_acquire(addr, size) = (__rdtsc() & -2) | u64{lsb};
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check and notify memory changes at address
|
// Check and notify memory changes at address
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user