mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-26 23:10:38 +00:00
Merge pull request #17206 from unknownbrackets/debugger
Debugger: Fix memory viewer, inverted check
This commit is contained in:
commit
3c9e968ca0
@ -912,7 +912,7 @@ void CtrlMemView::search(bool continueSearch) {
|
||||
segmentEnd = memoryAreas[i].second;
|
||||
|
||||
// better safe than sorry, I guess
|
||||
if (Memory::IsValidAddress(segmentStart))
|
||||
if (!Memory::IsValidAddress(segmentStart))
|
||||
continue;
|
||||
const u8 *dataPointer = Memory::GetPointerUnchecked(segmentStart);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user