0
0
Fork 0
mirror of https://github.com/ZDoom/gzdoom.git synced 2025-04-21 10:20:46 +00:00

- do not use CalcIndent for 320x200.

This commit is contained in:
Christoph Oelckers 2019-03-31 08:16:05 +02:00
parent 282cce765d
commit a768500afa

View file

@ -80,6 +80,7 @@ class OptionMenuItem : MenuItemBase
override int GetIndent()
{
if (mCentered) return 0;
if (screen.GetWidth() < 640) return screen.GetWidth() / 2;
return Menu.OptionWidth(Stringtable.Localize(mLabel));
}