mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-11 01:08:39 +12: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)
|
for (auto it = sections.crbegin(); it != sections.crend(); ++it)
|
||||||
{
|
{
|
||||||
if (it->base_address < range.start)
|
if (!it->surface->get_memory_range().inside(range))
|
||||||
{
|
{
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue