CPU/NewRec: Fix incorrect condition in GenerateCall()

This commit is contained in:
Stenzek
2024-07-14 21:18:24 +10:00
parent a5a320720a
commit 8698298499
5 changed files with 9 additions and 9 deletions

View File

@ -4822,7 +4822,7 @@ void FullscreenUI::DrawPostProcessingSettingsPage()
case 3:
{
changed = ImGui::SliderInt2("##value", &opt.value[0].int_value, opt.min_value[0].int_value,
changed = ImGui::SliderInt3("##value", &opt.value[0].int_value, opt.min_value[0].int_value,
opt.max_value[0].int_value);
}
break;