From 20b533ccc3f9b04c13ec9851bd08aabf86ad74b2 Mon Sep 17 00:00:00 2001 From: Henrik Rydgard Date: Mon, 7 Jan 2013 09:23:06 +0100 Subject: [PATCH] Win32: Reduce size of "prefill" allocation for the PSP memory space. --- Common/MemArena.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Common/MemArena.cpp b/Common/MemArena.cpp index 35b5dee79..f7ad48565 100644 --- a/Common/MemArena.cpp +++ b/Common/MemArena.cpp @@ -234,7 +234,7 @@ u8* MemArena::Find4GBBase() // 32 bit #ifdef _WIN32 // The highest thing in any 1GB section of memory space is the locked cache. We only need to fit it. - u8* base = (u8*)VirtualAlloc(0, 0x31000000, MEM_RESERVE, PAGE_READWRITE); + u8* base = (u8*)VirtualAlloc(0, 0x10000000, MEM_RESERVE, PAGE_READWRITE); if (base) { VirtualFree(base, 0, MEM_RELEASE); }