From 657ac2761279dfd306bdb6961f60f885126bd761 Mon Sep 17 00:00:00 2001 From: folkert van heusden Date: Sun, 7 Apr 2024 23:22:32 +0200 Subject: [PATCH] tapes not neccessarily run in debug by default --- main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.cpp b/main.cpp index a19701d..47f97fd 100644 --- a/main.cpp +++ b/main.cpp @@ -487,7 +487,7 @@ int main(int argc, char *argv[]) if (is_bic) run_bic(cnsl, b, &event, tracing, bic_start.value()); - else if (run_debugger || (bootloader == BL_NONE && test.empty())) + else if (run_debugger || (bootloader == BL_NONE && test.empty() && tape.empty())) debugger(cnsl, b, &event, tracing); else { c->emulation_start(); // for statistics