mirror of
https://github.com/SourMesen/Mesen2.git
synced 2025-04-02 10:21:44 -04:00
Debugger: Fixed memory access counter init (read stamp was not initialized to 0)
This commit is contained in:
parent
e2f68634cb
commit
9f6841eea5
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@ MemoryAccessCounter::MemoryAccessCounter(Debugger* debugger)
|
|||
uint32_t memSize = _debugger->GetMemoryDumper()->GetMemorySize((MemoryType)i);
|
||||
_counters[i].reserve(memSize);
|
||||
for(uint32_t j = 0; j < memSize; j++) {
|
||||
_counters[i].push_back({ j });
|
||||
_counters[i].push_back({});
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue