mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-01-29 17:38:16 +03:00
Add "resize to nearest" graphics option
If you want your game window to simply be exactly 320x240, or 640x480, or 960x720 etc. then it's really annoying that there's no easy way to do this (to clarify, this is different from integer mode, which controls the size of the game INSIDE the window). The easiest way would be having to close the game, go into unlock.vvv, and edit the window size manually. VCE has a 1x/2x/3x/4x graphics option to solve this, although it does not account for actual monitor size (those 1x/2x/3x/4x modes are all you get, whether or not you have a monitor too small for some of them or too big for any of them to be what you want). I discussed this with flibit, and he said that VCE's approach (if it accounted for monitor size) wouldn't work on high-retina displays or high DPIs, because getting the actual multiplier to account for those monitors is kind of a pain. So the next best thing would be to add an option that resizes to the nearest perfect multiple of 320x240. That way you could simply resize the window and let the game correct any imperfect dimensions automatically.
This commit is contained in:
@@ -212,6 +212,17 @@ void menurender()
|
||||
{
|
||||
graphics.Print(-1, 95, "Current mode: VSYNC ON", tr, tg, tb, true);
|
||||
}
|
||||
break;
|
||||
case 7:
|
||||
graphics.bigprint(-1, 30, "Resize to Nearest", tr, tg, tb, true);
|
||||
graphics.Print(-1, 65, "Resize to the nearest window size", tr, tg, tb, true);
|
||||
graphics.Print(-1, 75, "that is of an integer multiple.", tr, tg, tb, true);
|
||||
if (!graphics.screenbuffer->isWindowed)
|
||||
{
|
||||
graphics.Print(-1, 95, "You must be in windowed mode", tr, tg, tb, true);
|
||||
graphics.Print(-1, 105, "to use this option.", tr, tg, tb, true);
|
||||
}
|
||||
break;
|
||||
}
|
||||
break;
|
||||
case Menu::credits:
|
||||
|
||||
Reference in New Issue
Block a user