mirror of https://github.com/stella-emu/stella.git
Fix 'minimal_ui' mode for non-R77 build; it should still show a window title.
This commit is contained in:
parent
99d6d40a50
commit
0b3fc8890d
|
@ -91,15 +91,16 @@ LauncherDialog::LauncherDialog(OSystem& osystem, DialogContainer& parent,
|
||||||
|
|
||||||
if(myUseMinimalUI)
|
if(myUseMinimalUI)
|
||||||
{
|
{
|
||||||
#if defined(RETRON77)
|
|
||||||
// App information
|
// App information
|
||||||
ostringstream ver;
|
ostringstream ver;
|
||||||
ver << "Stella " << STELLA_VERSION << " for RetroN 77";
|
ver << "Stella " << STELLA_VERSION;
|
||||||
|
#if defined(RETRON77)
|
||||||
|
ver << " for RetroN 77";
|
||||||
|
#endif
|
||||||
ypos += 8;
|
ypos += 8;
|
||||||
new StaticTextWidget(this, font, xpos, ypos, _w - 20, fontHeight,
|
new StaticTextWidget(this, font, xpos, ypos, _w - 20, fontHeight,
|
||||||
ver.str(), TextAlign::Center);
|
ver.str(), TextAlign::Center);
|
||||||
ypos += fontHeight - 4;
|
ypos += fontHeight - 4;
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Show the header
|
// Show the header
|
||||||
|
|
Loading…
Reference in New Issue