mirror of https://github.com/PCSX2/pcsx2.git
UI: fix invert settings being incorrectly set in big picture mode
This commit is contained in:
parent
f565da6c58
commit
d626028203
|
@ -2649,7 +2649,7 @@ void FullscreenUI::DrawSettingInfoSetting(SettingsInterface* bsi, const char* se
|
||||||
|
|
||||||
case SettingInfo::Type::IntegerList:
|
case SettingInfo::Type::IntegerList:
|
||||||
DrawIntListSetting(
|
DrawIntListSetting(
|
||||||
bsi, title.c_str(), si.description, section, key, si.IntegerDefaultValue(), si.options, 0, si.IntegerMinValue(), true);
|
bsi, title.c_str(), si.description, section, key, si.IntegerDefaultValue(), si.options, 0, true, si.IntegerMinValue());
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case SettingInfo::Type::Float:
|
case SettingInfo::Type::Float:
|
||||||
|
|
Loading…
Reference in New Issue