Fix 'minimal_ui' mode for non-R77 build; it should still show a window title.

This commit is contained in:
Stephen Anthony 2019-04-13 20:36:16 -02:30
parent 99d6d40a50
commit 0b3fc8890d
1 changed files with 4 additions and 3 deletions

View File

@ -91,15 +91,16 @@ LauncherDialog::LauncherDialog(OSystem& osystem, DialogContainer& parent,
if(myUseMinimalUI)
{
#if defined(RETRON77)
// App information
ostringstream ver;
ver << "Stella " << STELLA_VERSION << " for RetroN 77";
ver << "Stella " << STELLA_VERSION;
#if defined(RETRON77)
ver << " for RetroN 77";
#endif
ypos += 8;
new StaticTextWidget(this, font, xpos, ypos, _w - 20, fontHeight,
ver.str(), TextAlign::Center);
ypos += fontHeight - 4;
#endif
}
// Show the header