From 86078ccf98d1546cab8b145d4e36d79c467b340f Mon Sep 17 00:00:00 2001 From: Toni Wilen Date: Sat, 16 May 2026 11:57:57 +0300 Subject: [PATCH] Debugger info text address off by one --- debug.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debug.cpp b/debug.cpp index c90eb466..f4b0a2d1 100644 --- a/debug.cpp +++ b/debug.cpp @@ -4001,7 +4001,7 @@ static void smc_detect_init(TCHAR **c) initialize_memwatch(0); if (v) smc_mode = 1; - console_out_f(_T("SMCD enabled. Break=%d. Last address=%08x\n"), smc_mode, smc_size); + console_out_f(_T("SMCD enabled. Break=%d. Last address=%08x\n"), smc_mode, smc_size - 1); } void debug_smc_clear(uaecptr addr, int size) -- 2.47.3