Fix crash caused by VirtualRange mismatch (ryubing/ryujinx!109)

See merge request ryubing/ryujinx!109
merge-requests/93/head^2 Canary-1.3.112
LotP 2025-08-09 17:46:29 -05:00
parent 01e1cd4d5a
commit c482b7a1c0
1 changed files with 1 additions and 1 deletions

View File

@ -157,7 +157,7 @@ namespace Ryujinx.Memory.Range
{
int index = BinarySearch(item.Address);
if (index >= 0 && Items[index].Value.Equals(item))
if (index >= 0)
{
_quickAccess.Remove(item.Address);