mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-10 00:41:26 +12:00
PPU: Fix STVLX
Fixes Sly 2 and Sly 3 crash on boot (RSX desync).
This commit is contained in:
parent
64579eef7e
commit
905496e926
1 changed files with 1 additions and 1 deletions
|
@ -5311,7 +5311,7 @@ auto STVLX()
|
|||
{
|
||||
const u64 addr = op.ra ? a + b : b;
|
||||
const u32 tail = u32(addr & 15);
|
||||
u8* ptr = vm::_ptr<u8>(addr & -16);
|
||||
u8* ptr = vm::_ptr<u8>(addr);
|
||||
for (u32 j = 0; j < 16 - tail; j++)
|
||||
ptr[j] = s.u8r[j];
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue