Fixed overflow of text/UI items in large font mode in the debugger;

we need just a little more height.  There's similar issues for the
smallest font, but I need to think about that one a little more,
since many people are affected if we change the window size at the
smallest setting.
This commit is contained in:
Stephen Anthony 2017-03-28 15:18:20 -02:30
parent 3a8967f349
commit d819f9c7b8
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ class DebuggerDialog : public Dialog
enum {
kSmallFontMinW = 1080, kSmallFontMinH = 720,
kMediumFontMinW = 1280, kMediumFontMinH = 860,
kLargeFontMinW = 1300, kLargeFontMinH = 940
kLargeFontMinW = 1300, kLargeFontMinH = 980
};
DebuggerDialog(OSystem& osystem, DialogContainer& parent,