From 2e81c501661e91e132889f2e4a72bcac0eb083eb Mon Sep 17 00:00:00 2001 From: thrust26 Date: Sun, 15 Mar 2020 19:54:45 +0100 Subject: [PATCH] use R77 screen size as maximum for StellaSettingsDialog --- src/gui/Menu.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/Menu.cxx b/src/gui/Menu.cxx index c47525da9..fa2a569c6 100644 --- a/src/gui/Menu.cxx +++ b/src/gui/Menu.cxx @@ -43,7 +43,7 @@ Dialog* Menu::baseDialog() { if (stellaSettingDialog == nullptr) stellaSettingDialog = new StellaSettingsDialog(myOSystem, *this, myOSystem.frameBuffer().font(), - FBMinimum::Width, FBMinimum::Height, AppMode::emulator); + 1280, 720, AppMode::emulator); return stellaSettingDialog; } else