[GPU] Fix internal_display_resolution condition

This commit is contained in:
Margen67 2024-10-18 12:46:34 -07:00
parent d2921a09eb
commit 6c0f026824
1 changed files with 23 additions and 23 deletions

View File

@ -30,27 +30,27 @@
#include "xenia/ui/window.h" #include "xenia/ui/window.h"
#include "xenia/ui/windowed_app_context.h" #include "xenia/ui/windowed_app_context.h"
DEFINE_int32(internal_display_resolution, 8, DEFINE_uint32(internal_display_resolution, 8,
"Allow game that support different resolutions to be rendered " "Allow games that support different resolutions to render "
"in specific resolution.\n" "in a specific resolution.\n"
" 0=640x480\n" " 0=640x480\n"
" 1=640x576\n" " 1=640x576\n"
" 2=720x480\n" " 2=720x480\n"
" 3=720x576\n" " 3=720x576\n"
" 4=800x600\n" " 4=800x600\n"
" 5=848x480\n" " 5=848x480\n"
" 6=1024x768\n" " 6=1024x768\n"
" 7=1152x864\n" " 7=1152x864\n"
" 8=1280x720 (Default)\n" " 8=1280x720 (Default)\n"
" 9=1280x768\n" " 9=1280x768\n"
" 10=1280x960\n" " 10=1280x960\n"
" 11=1280x1024\n" " 11=1280x1024\n"
" 12=1360x768\n" " 12=1360x768\n"
" 13=1440x900\n" " 13=1440x900\n"
" 14=1680x1050\n" " 14=1680x1050\n"
" 15=1920x540\n" " 15=1920x540\n"
" 16=1920x1080\n", " 16=1920x1080\n",
"Video"); "Video");
DEFINE_bool( DEFINE_bool(
store_shaders, true, store_shaders, true,
@ -406,7 +406,7 @@ bool GraphicsSystem::Restore(ByteStream* stream) {
} }
std::pair<uint16_t, uint16_t> GraphicsSystem::GetInternalDisplayResolution() { std::pair<uint16_t, uint16_t> GraphicsSystem::GetInternalDisplayResolution() {
if (cvars::internal_display_resolution > if (cvars::internal_display_resolution >=
internal_display_resolution_entries.size()) { internal_display_resolution_entries.size()) {
return internal_display_resolution_entries[8]; return internal_display_resolution_entries[8];
} }
@ -415,4 +415,4 @@ std::pair<uint16_t, uint16_t> GraphicsSystem::GetInternalDisplayResolution() {
} }
} // namespace gpu } // namespace gpu
} // namespace xe } // namespace xe