mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-23 14:25:37 +00:00
GameSettings: Fix texture filter setting not loading from ini
This commit is contained in:
parent
c119ccffc8
commit
1320e4fdab
|
@ -274,7 +274,7 @@ static void ParseIniSection(Entry* entry, const char* section, const CSimpleIniA
|
||||||
cvalue = ini.GetValue(section, "GPUScaledDithering", nullptr);
|
cvalue = ini.GetValue(section, "GPUScaledDithering", nullptr);
|
||||||
if (cvalue)
|
if (cvalue)
|
||||||
entry->gpu_scaled_dithering = StringUtil::FromChars<bool>(cvalue);
|
entry->gpu_scaled_dithering = StringUtil::FromChars<bool>(cvalue);
|
||||||
cvalue = ini.GetValue(section, "GPUBilinearTextureFiltering", nullptr);
|
cvalue = ini.GetValue(section, "GPUTextureFiltering", nullptr);
|
||||||
if (cvalue)
|
if (cvalue)
|
||||||
entry->gpu_texture_filter = Settings::ParseTextureFilterName(cvalue);
|
entry->gpu_texture_filter = Settings::ParseTextureFilterName(cvalue);
|
||||||
cvalue = ini.GetValue(section, "GPUForceNTSCTimings", nullptr);
|
cvalue = ini.GetValue(section, "GPUForceNTSCTimings", nullptr);
|
||||||
|
|
Loading…
Reference in a new issue