diff --git a/Source/Plugins/Plugin_VideoOGL/Src/Config.cpp b/Source/Plugins/Plugin_VideoOGL/Src/Config.cpp index 4d0f44dda9..3f70e35b98 100644 --- a/Source/Plugins/Plugin_VideoOGL/Src/Config.cpp +++ b/Source/Plugins/Plugin_VideoOGL/Src/Config.cpp @@ -99,6 +99,19 @@ void Config::GameIniLoad() { if (iniFile->Exists("Video", "EFBToTextureEnable")) iniFile->Get("Video", "EFBToTextureEnable", &bCopyEFBToRAM, 0); + + if (iniFile->Exists("Video", "SafeTextureCache")) + iniFile->Get("Video", "SafeTextureCache", &bSafeTextureCache, false); + + if (iniFile->Exists("Video", "MSAA")) + iniFile->Get("Video", "MSAA", &iMultisampleMode, 0); + + if (iniFile->Exists("Video", "DstAlphaPass")) + iniFile->Get("Video", "DstAlphaPass", &bDstAlphaPass, false); + + if (iniFile->Exists("Video", "UseXFB")) + iniFile->Get("Settings", "UseXFB", &bUseXFB, 0); + } void Config::Save()