]> git.unchartedbackwaters.co.uk Git - francis/winuae.git/commitdiff
Fix 64-bit data bus value output
authorToni Wilen <twilen@winuae.net>
Thu, 4 Dec 2025 15:59:15 +0000 (17:59 +0200)
committerToni Wilen <twilen@winuae.net>
Thu, 4 Dec 2025 15:59:15 +0000 (17:59 +0200)
debug.cpp

index e9d35cf3d50b30b5689655014da057576df8c9e5..c48b5ee959248d28e813883e162c594e370ac264 100644 (file)
--- 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 {