mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-10 09:21:43 +00:00
Fix regression in SignalMemoryTracking (#2073)
* Fix wrong VA being passed to VirtualMemoryEvent * Remove unnecessary type in discard Co-authored-by: gdkchan <gab.dark.100@gmail.com> Co-authored-by: gdkchan <gab.dark.100@gmail.com>
This commit is contained in:
parent
06a2b03cc9
commit
7a90abc035
1 changed files with 1 additions and 1 deletions
|
@ -684,7 +684,7 @@ namespace Ryujinx.Cpu
|
|||
// Write tag includes read protection, since we don't have any read actions that aren't performed before write too.
|
||||
long tag = (write ? 3L : 1L) << PointerTagBit;
|
||||
|
||||
int pages = GetPagesCount(va, (uint)size, out va);
|
||||
int pages = GetPagesCount(va, (uint)size, out _);
|
||||
ulong pageStart = va >> PageBits;
|
||||
|
||||
for (int page = 0; page < pages; page++)
|
||||
|
|
Loading…
Reference in a new issue