aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCatalystG2013-03-09 10:07:12 -0500
committernotaz2013-03-15 02:19:21 +0200
commit30773ad710989fd84254978e19af5ea92768e3ea (patch)
tree4a0b53ca1e3933a0e62e2cfdc35bd3d67b33381e
parent9ffe8d5c92153fb8d0e7564a129d5f0d04806979 (diff)
downloadpcsx_rearmed-30773ad710989fd84254978e19af5ea92768e3ea.tar.gz
pcsx_rearmed-30773ad710989fd84254978e19af5ea92768e3ea.tar.bz2
pcsx_rearmed-30773ad710989fd84254978e19af5ea92768e3ea.zip
Fix PSX unmap issue causing crash on exit
-rw-r--r--libpcsxcore/psxmem.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libpcsxcore/psxmem.c b/libpcsxcore/psxmem.c
index 4373121..f12a981 100644
--- a/libpcsxcore/psxmem.c
+++ b/libpcsxcore/psxmem.c
@@ -198,7 +198,7 @@ void psxMemReset() {
void psxMemShutdown() {
psxUnmap(psxM, 0x00210000, MAP_TAG_RAM);
- psxUnmap(psxH, 0x1f800000, MAP_TAG_OTHER);
+ psxUnmap(psxH, 0x10000, MAP_TAG_OTHER);
psxUnmap(psxR, 0x80000, MAP_TAG_OTHER);
free(psxMemRLUT);