mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
[Android] Make sure to unallocate the correct memory size in MemArena.
This commit is contained in:
@ -152,7 +152,7 @@ u8* MemArena::Find4GBBase()
|
||||
PanicAlert("Failed to map 1 GB of memory space: %s", strerror(errno));
|
||||
return 0;
|
||||
}
|
||||
munmap(base, 0x31000000);
|
||||
munmap(base, MemSize);
|
||||
return static_cast<u8*>(base);
|
||||
#endif
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user