[Libretro] Fix some default config values

-iAltSpeedVolume
-iFirmwareVersion
-iPSPModel
Fixes #12144
This commit is contained in:
M4xw 2019-07-04 16:21:37 +02:00
parent 962412682b
commit 71c7686280

View file

@ -321,10 +321,14 @@ void retro_init(void) {
g_Config.bFrameSkipUnthrottle = false;
g_Config.bMemStickInserted = PSP_MEMORYSTICK_STATE_INSERTED;
g_Config.iGlobalVolume = VOLUME_MAX - 1;
g_Config.iAltSpeedVolume = -1;
g_Config.bEnableSound = true;
g_Config.bAudioResampler = false;
g_Config.iCwCheatRefreshRate = 60;
g_Config.iFirmwareVersion = PSP_DEFAULT_FIRMWARE;
g_Config.iPSPModel = PSP_MODEL_SLIM;
LogManager::Init();
host = new LibretroHost;