From: Toni Wilen Date: Thu, 4 Dec 2025 15:59:15 +0000 (+0200) Subject: Fix 64-bit data bus value output X-Git-Tag: 6020~32 X-Git-Url: https://git.unchartedbackwaters.co.uk/w/?a=commitdiff_plain;h=5ac2ce4e71b79c6a78d7a4157973780c52b44aa2;p=francis%2Fwinuae.git Fix 64-bit data bus value output --- 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 {