Merge remote-tracking branch 'gdk/new-jit-ht' into ios-ht

This commit is contained in:
riperiperi 2024-01-04 21:35:33 +00:00
commit afcfba498c
154 changed files with 45754 additions and 88 deletions

View file

@ -293,9 +293,9 @@ namespace Ryujinx.Memory
{
var hostRegion = hostRegions[i];
if ((ulong)hostRegion.Address >= backingStart && (ulong)hostRegion.Address < backingEnd)
if (hostRegion.Address >= backingStart && hostRegion.Address < backingEnd)
{
regions[count++] = new MemoryRange((ulong)hostRegion.Address - backingStart, hostRegion.Size);
regions[count++] = new MemoryRange(hostRegion.Address - backingStart, hostRegion.Size);
}
}