mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 03:25:16 +00:00
rsx: Fix surface deduplication crash
This commit is contained in:
parent
2eebecfb17
commit
3f80d0b7d8
1 changed files with 1 additions and 1 deletions
|
@ -968,7 +968,7 @@ namespace rsx
|
|||
|
||||
for (auto it = sections.crbegin(); it != sections.crend(); ++it)
|
||||
{
|
||||
if (it->base_address < range.start)
|
||||
if (!it->surface->get_memory_range().inside(range))
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue