X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=libpcsxcore%2Flightrec%2Fmem.c;h=c0186da16ce96206e6da7f48524941816440199a;hb=3569821141fcc25a47b5d6942d219b659aba5547;hp=ff67e3d010b3fa28efa3dd070dc0c3c19bda5fe4;hpb=f854810594658feb59b1e67c2d97e19553b4b34c;p=pcsx_rearmed.git diff --git a/libpcsxcore/lightrec/mem.c b/libpcsxcore/lightrec/mem.c index ff67e3d0..c0186da1 100644 --- a/libpcsxcore/lightrec/mem.c +++ b/libpcsxcore/lightrec/mem.c @@ -190,7 +190,7 @@ int lightrec_init_mmap(void) err_unmap_scratch: munmap(psxH, 0x10000); err_unmap_bios: - munmap(psxR, 0x80000); + munmap(psxR, 0x200000); err_unmap_parallel: munmap(psxP, 0x10000); err_unmap: @@ -205,7 +205,7 @@ void lightrec_free_mmap(void) munmap(code_buffer, CODE_BUFFER_SIZE); munmap(psxH, 0x10000); - munmap(psxR, 0x80000); + munmap(psxR, 0x200000); munmap(psxP, 0x10000); for (i = 0; i < 4; i++) munmap((void *)((uintptr_t)psxM + i * 0x200000), 0x200000);