Set configuration default to *not* exit early.

Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
This commit is contained in:
Adrian Conlon 2018-10-21 18:07:42 +01:00
parent 806251bf6f
commit 4840c238d6

View File

@ -22,6 +22,6 @@ public:
private:
bool m_debugMode = false;
bool m_terminatesEarly = true;
bool m_terminatesEarly = false;
std::string m_romDirectory = "roms\\searle";
};