mirror of
https://github.com/hedge-dev/UnleashedRecomp.git
synced 2025-10-30 07:11:05 +00:00
options_menu: start monitor index from 1
This commit is contained in:
parent
266d436c28
commit
871515b3be
1 changed files with 4 additions and 0 deletions
|
|
@ -1106,6 +1106,10 @@ static void DrawConfigOption(int32_t rowIndex, float yOffset, ConfigDef<T>* 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);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue