Compile fix for Linux/libretro

This commit is contained in:
Connor McLaughlin
2020-08-21 00:26:14 +10:00
parent bca609a2a6
commit f852be74e8
3 changed files with 6 additions and 5 deletions

View File

@ -101,7 +101,7 @@ bool LibretroHostInterface::Initialize()
return false;
LoadSettings();
FixIncompatibleSettings();
FixIncompatibleSettings(true);
UpdateLogging();
return true;
}
@ -632,7 +632,7 @@ void LibretroHostInterface::UpdateSettings()
{
Settings old_settings(std::move(g_settings));
LoadSettings();
FixIncompatibleSettings();
FixIncompatibleSettings(false);
if (g_settings.gpu_resolution_scale != old_settings.gpu_resolution_scale &&
g_settings.gpu_renderer != GPURenderer::Software)