From 882b5f3ff3c2d7004a8d82ae0cc8ae7121c7f9fd Mon Sep 17 00:00:00 2001 From: dingusdev Date: Mon, 22 Mar 2021 21:19:08 -0700 Subject: [PATCH] Temporary fix for command line args Set the values for two booleans to prevent potential conflicts when compiling DingusPPC --- main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.cpp b/main.cpp index 7a66297..7c17053 100644 --- a/main.cpp +++ b/main.cpp @@ -64,7 +64,7 @@ int main(int argc, char** argv) { app.allow_windows_style_options(); /* we want Windows-style options */ app.allow_extras(); - bool realtime_enabled, debugger_enabled; + bool realtime_enabled, debugger_enabled = false; string machine_str; string bootrom_path("bootrom.bin");