Move "resize to nearest" grouped with other resolution-related options

The options for fullscreen and scaling mode were at the top, then there
were various other graphical options, and then the option to resize to
the nearest window size that is of an integer multiple was all the way
below that. Now that last option is moved to be right below the other
options related to window sizing.
This commit is contained in:
Dav999-v
2020-06-30 22:30:59 +02:00
committed by Ethan Lee
parent a2d8e57af0
commit e20c01deed
3 changed files with 40 additions and 43 deletions

View File

@@ -7161,11 +7161,11 @@ void Game::createmenu( enum Menu::MenuName t, bool samemenu/*= false*/ )
case Menu::graphicoptions:
option("toggle fullscreen");
option("toggle letterbox");
option("resize to nearest", graphics.screenbuffer->isWindowed);
option("toggle filter");
option("toggle analogue");
option("toggle fps");
option("toggle vsync");
option("resize to nearest", graphics.screenbuffer->isWindowed);
option("return");
menuyoff = -10;
break;