Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[Android] Make sure to unallocate the correct memory size in MemArena.
  • Loading branch information
Sonicadvance1 committed Aug 16, 2013
1 parent 82e9bed commit 367f294
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/Common/Src/MemArena.cpp
Expand Up @@ -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
Expand Down

0 comments on commit 367f294

Please sign in to comment.