Merge pull request #12151 from m4xw/lr_config

[Libretro] Fix some default config values
This commit is contained in:
Unknown W. Brackets 2019-07-04 08:56:53 -07:00 committed by GitHub
commit b0c4323714
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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;