mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Fix a bad check, causing masked memory to fail on non-32-bit platforms even if desired.
This commit is contained in:
parent
21830d4984
commit
dd7983c8dd
1 changed files with 1 additions and 1 deletions
|
@ -121,7 +121,7 @@ static MemoryView views[] =
|
|||
static const int num_views = sizeof(views) / sizeof(MemoryView);
|
||||
|
||||
inline static bool CanIgnoreView(const MemoryView &view) {
|
||||
#if PPSSPP_ARCH(32BIT)
|
||||
#ifdef MASKED_PSP_MEMORY
|
||||
// Basically, 32-bit platforms can ignore views that are masked out anyway.
|
||||
return (view.flags & MV_MIRROR_PREVIOUS) && (view.virtual_address & ~MEMVIEW32_MASK) != 0;
|
||||
#else
|
||||
|
|
Loading…
Add table
Reference in a new issue