mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-08-26 07:25:14 +02:00
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:
+5
-1
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user