mirror of https://github.com/stella-emu/stella.git
removed debug code
This commit is contained in:
parent
5bd33885e3
commit
32e9c14b0d
|
@ -322,7 +322,7 @@ void DebuggerDialog::createFont()
|
|||
void DebuggerDialog::showFatalMessage(const string& msg)
|
||||
{
|
||||
myFatalError = make_unique<GUI::MessageBox>(this, *myLFont, msg, _w/2, _h/2,
|
||||
kDDExitFatalCmd, "Exit ROM", "Continue");
|
||||
kDDExitFatalCmd, "Exit ROM", "Continue", "Fatal error");
|
||||
myFatalError->show();
|
||||
}
|
||||
|
||||
|
|
|
@ -215,8 +215,8 @@ void LauncherDialog::loadConfig()
|
|||
instance().settings().getString("romdir");
|
||||
|
||||
// When romdir hasn't been set, it probably indicates that this is the first
|
||||
// time running Stella; in this case, we should prompt the user
|
||||
if(true || romdir == "")
|
||||
// time running Stella; in this case, we should prompt the user
|
||||
if(romdir == "")
|
||||
{
|
||||
if(!myFirstRunMsg)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue