ui: Allow rendering scale to go up to 10x

This commit is contained in:
Matt Borgerson 2021-07-20 03:00:27 -07:00 committed by mborgerson
parent 59d3bfe268
commit edf3735718
1 changed files with 1 additions and 1 deletions

View File

@ -2076,7 +2076,7 @@ static void ShowMainMenu()
}
int rendering_scale = nv2a_get_surface_scale_factor() - 1;
if (ImGui::Combo("Rendering Scale", &rendering_scale, "1x\0" "2x\0" "3x\0" "4x\0")) {
if (ImGui::Combo("Rendering Scale", &rendering_scale, "1x\0" "2x\0" "3x\0" "4x\0" "5x\0" "6x\0" "7x\0" "8x\0" "9x\0" "10x\0")) {
nv2a_set_surface_scale_factor(rendering_scale+1);
}