mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-26 23:10:38 +00:00
Fix crash on Symbian when doing "Return to Menu"
This commit is contained in:
parent
f6cc766e77
commit
a9eb6cf4a4
@ -189,7 +189,7 @@ void MemArena::ReleaseView(void* view, size_t size)
|
||||
#ifdef _WIN32
|
||||
UnmapViewOfFile(view);
|
||||
#elif defined(__SYMBIAN32__)
|
||||
memmap->Decommit((int)view - (int)memmap->Base(), size);
|
||||
memmap->Decommit(((int)view - (int)memmap->Base()) & 0x3FFFFFFF, size);
|
||||
#else
|
||||
munmap(view, size);
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user