mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 11:36:13 +00:00
rsx: Fix boundary seek logic for FIFO addresses
This commit is contained in:
parent
563a3d3587
commit
e6b3c2061e
1 changed files with 1 additions and 1 deletions
|
@ -240,7 +240,7 @@ namespace rsx
|
|||
|
||||
for (u32 remaining = size, addr = m_internal_get, ptr = from; remaining > 0;)
|
||||
{
|
||||
const u32 next_block = utils::align(addr, _1M);
|
||||
const u32 next_block = utils::align(addr + 1, _1M);
|
||||
const u32 available = (next_block - addr);
|
||||
if (remaining <= available)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue