From 4840c238d691776a710344cefc74aa3821c1e3a3 Mon Sep 17 00:00:00 2001 From: Adrian Conlon Date: Sun, 21 Oct 2018 18:07:42 +0100 Subject: [PATCH] Set configuration default to *not* exit early. Signed-off-by: Adrian Conlon --- MC6809/test/Configuration.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MC6809/test/Configuration.h b/MC6809/test/Configuration.h index 428b8b5..eda5d47 100644 --- a/MC6809/test/Configuration.h +++ b/MC6809/test/Configuration.h @@ -22,6 +22,6 @@ public: private: bool m_debugMode = false; - bool m_terminatesEarly = true; + bool m_terminatesEarly = false; std::string m_romDirectory = "roms\\searle"; };