From 5ac2ce4e71b79c6a78d7a4157973780c52b44aa2 Mon Sep 17 00:00:00 2001 From: Toni Wilen Date: Thu, 4 Dec 2025 17:59:15 +0200 Subject: [PATCH] Fix 64-bit data bus value output --- debug.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/debug.cpp b/debug.cpp index e9d35cf3..c48b5ee9 100644 --- a/debug.cpp +++ b/debug.cpp @@ -2636,9 +2636,9 @@ static bool get_record_dma_info(struct dma_rec *drs, struct dma_rec *dr, TCHAR * if (l3 && !noval) { uae_u64 v = dr->dat; if (longsize == 4) { - _stprintf(l3, _T("%08X"), (uae_u32)v); + _stprintf(l3, _T(" %08X"), (uae_u32)v); } else if (longsize == 8) { - _stprintf(l3, _T("%08X"), (uae_u32)(v >> 32)); + _stprintf(l3, _T(" %08X"), (uae_u32)(v >> 32)); extra64 = true; extraval = (uae_u32)v; } else { -- 2.47.3