use R77 screen size as maximum for StellaSettingsDialog

This commit is contained in:
thrust26 2020-03-15 19:54:45 +01:00
parent 1779845032
commit 070489362c
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ Dialog* Menu::baseDialog()
{ {
if (stellaSettingDialog == nullptr) if (stellaSettingDialog == nullptr)
stellaSettingDialog = new StellaSettingsDialog(myOSystem, *this, myOSystem.frameBuffer().font(), stellaSettingDialog = new StellaSettingsDialog(myOSystem, *this, myOSystem.frameBuffer().font(),
FBMinimum::Width, FBMinimum::Height, AppMode::emulator); 1280, 720, AppMode::emulator);
return stellaSettingDialog; return stellaSettingDialog;
} }
else else