mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-23 06:15:38 +00:00
GameSettings: Fix incorrect key for texture filter load from ini
This commit is contained in:
parent
d150a2ccc3
commit
eca0b51008
|
@ -276,7 +276,7 @@ static void ParseIniSection(Entry* entry, const char* section, const CSimpleIniA
|
|||
cvalue = ini.GetValue(section, "GPUScaledDithering", nullptr);
|
||||
if (cvalue)
|
||||
entry->gpu_scaled_dithering = StringUtil::FromChars<bool>(cvalue);
|
||||
cvalue = ini.GetValue(section, "GPUTextureFiltering", nullptr);
|
||||
cvalue = ini.GetValue(section, "GPUTextureFilter", nullptr);
|
||||
if (cvalue)
|
||||
entry->gpu_texture_filter = Settings::ParseTextureFilterName(cvalue);
|
||||
cvalue = ini.GetValue(section, "GPUForceNTSCTimings", nullptr);
|
||||
|
|
Loading…
Reference in a new issue