Make the model option ini-only.

Move PSP_MODEL_FAT and PSP_MODEL_SLIM to Config.h.
Default to a PSP Slim, and enable 64 megs of memory by default.
This commit is contained in:
The Dax
2013-11-28 14:37:10 -05:00
parent 5d310e6014
commit 85e3a2dbfb
7 changed files with 12 additions and 9 deletions
+5 -1
View File
@@ -153,7 +153,11 @@ void CPU_Init() {
// Default memory settings
// Seems to be the safest place currently..
Memory::g_MemorySize = Memory::RAM_NORMAL_SIZE; // 32 MB of ram by default
if (g_Config.iPSPModel == PSP_MODEL_FAT)
Memory::g_MemorySize = Memory::RAM_NORMAL_SIZE; // 32 MB of ram by default
else
Memory::g_MemorySize = Memory::RAM_DOUBLE_SIZE;
g_RemasterMode = false;
g_DoubleTextureCoordinates = false;