From: Toni Wilen Date: Sat, 16 May 2026 08:57:57 +0000 (+0300) Subject: Debugger info text address off by one X-Git-Url: https://git.unchartedbackwaters.co.uk/w/?a=commitdiff_plain;h=86078ccf98d1546cab8b145d4e36d79c467b340f;p=francis%2Fwinuae.git Debugger info text address off by one --- 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)