mirror of
https://github.com/RPCS3/rpcs3.git
synced 2026-04-04 20:07:54 -06:00
rsx: Fixup get_address() after #18038
This commit is contained in:
parent
960e2a9ed8
commit
df72f4abed
@ -156,10 +156,10 @@ namespace rsx
|
||||
{
|
||||
bool ok = true;
|
||||
|
||||
for (u32 offs_index = 0x100000; offs_index < size_to_check; offs_index += 0x100000)
|
||||
for (u32 offs_index = 0x100000; offs_index < size_to_check + (offset & 0xfffff); offs_index += 0x100000)
|
||||
{
|
||||
// This check does not check continuity but rather that it's mapped at all
|
||||
if (render->iomap_table.get_addr(offs_index) == umax)
|
||||
if (render->iomap_table.get_addr(offset + offs_index) == umax)
|
||||
{
|
||||
ok = false;
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user