From 871515b3be7cddc252660277b22608f2a5dd9a98 Mon Sep 17 00:00:00 2001 From: Hyper <34012267+hyperbx@users.noreply.github.com> Date: Fri, 7 Feb 2025 09:58:39 +0000 Subject: [PATCH] options_menu: start monitor index from 1 --- UnleashedRecomp/ui/options_menu.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/UnleashedRecomp/ui/options_menu.cpp b/UnleashedRecomp/ui/options_menu.cpp index c4e6d5e..a2fdbde 100644 --- a/UnleashedRecomp/ui/options_menu.cpp +++ b/UnleashedRecomp/ui/options_menu.cpp @@ -1106,6 +1106,10 @@ static void DrawConfigOption(int32_t rowIndex, float yOffset, ConfigDef* conf valueText = fmt::format("{}x{}", GameWindow::s_width, GameWindow::s_height); } } + else if (config == &Config::Monitor) + { + valueText = fmt::format("{}", config->Value + 1); + } else { valueText = fmt::format("{}", config->Value);