- 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
1 changed files with 1 additions and 0 deletions

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));
}