mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Headless: Define consistent memstick size.
This commit is contained in:
parent
d4c02ccc1c
commit
53ba351797
2 changed files with 4 additions and 1 deletions
|
@ -392,9 +392,12 @@ int main(int argc, const char* argv[])
|
|||
g_Config.iSplineBezierQuality = 2;
|
||||
g_Config.bHighQualityDepth = true;
|
||||
g_Config.bMemStickInserted = true;
|
||||
g_Config.iMemStickSizeGB = 16;
|
||||
g_Config.bFragmentTestCache = true;
|
||||
g_Config.bEnableWlan = true;
|
||||
g_Config.sMACAddress = "12:34:56:78:9A:BC";
|
||||
g_Config.iFirmwareVersion = PSP_DEFAULT_FIRMWARE;
|
||||
g_Config.iPSPModel = PSP_MODEL_SLIM;
|
||||
|
||||
#ifdef _WIN32
|
||||
g_Config.internalDataDirectory = "";
|
||||
|
|
|
@ -352,7 +352,7 @@ void retro_init(void)
|
|||
|
||||
g_Config.bEnableLogging = true;
|
||||
g_Config.iUnthrottleMode = (int)UnthrottleMode::CONTINUOUS;
|
||||
g_Config.bMemStickInserted = PSP_MEMORYSTICK_STATE_INSERTED;
|
||||
g_Config.bMemStickInserted = true;
|
||||
g_Config.iGlobalVolume = VOLUME_MAX - 1;
|
||||
g_Config.iAltSpeedVolume = -1;
|
||||
g_Config.bEnableSound = true;
|
||||
|
|
Loading…
Add table
Reference in a new issue