diff --git a/src/gui/LauncherDialog.cxx b/src/gui/LauncherDialog.cxx index 3fc4a5f33..d935ee799 100644 --- a/src/gui/LauncherDialog.cxx +++ b/src/gui/LauncherDialog.cxx @@ -164,7 +164,7 @@ LauncherDialog::LauncherDialog(OSystem& osystem, DialogContainer& parent, // Create an options dialog, similar to the in-game one myOptions = make_unique(osystem, parent, this, - int(w * 0.85), int(h * 0.85), true); + int(w * 0.8), int(h * 0.8), true); // Create a game list, which contains all the information about a ROM that // the launcher needs diff --git a/src/gui/Menu.cxx b/src/gui/Menu.cxx index c0f58266c..41f62046c 100644 --- a/src/gui/Menu.cxx +++ b/src/gui/Menu.cxx @@ -26,5 +26,5 @@ Menu::Menu(OSystem& osystem) : DialogContainer(osystem) { myBaseDialog = new OptionsDialog(myOSystem, *this, 0, - int(FrameBuffer::kFBMinW * 0.85), int(FrameBuffer::kFBMinH * 0.85), false); + FrameBuffer::kFBMinW, FrameBuffer::kFBMinH, false); }