UI: fix invert settings being incorrectly set in big picture mode

This commit is contained in:
void 2024-06-16 23:45:47 +02:00 committed by Connor McLaughlin
parent f565da6c58
commit d626028203
1 changed files with 1 additions and 1 deletions

View File

@ -2649,7 +2649,7 @@ void FullscreenUI::DrawSettingInfoSetting(SettingsInterface* bsi, const char* se
case SettingInfo::Type::IntegerList:
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;
case SettingInfo::Type::Float: