mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-08-09 01:29:23 +00:00
Fix warning (vm::reservation_update)
This commit is contained in:
parent
841d8955de
commit
ef0196d791
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue