From 129a8348b20a3c76015824021e08e4453898f253 Mon Sep 17 00:00:00 2001 From: Toni Wilen Date: Sat, 13 Apr 2024 22:47:24 +0300 Subject: [PATCH] Fix missing Denise horizontal counter in DMA debugger --- debug.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/debug.cpp b/debug.cpp index 9469e221..d0d33fdb 100644 --- a/debug.cpp +++ b/debug.cpp @@ -2494,9 +2494,9 @@ static bool get_record_dma_info(struct dma_rec *drs, struct dma_rec *dr, TCHAR * if (ipl >= 0) { _stprintf(l1, _T("[%02X %03X %d]"), hpos, dhpos, ipl); } else if (ipl == -2) { - _stprintf(l1, _T("[%02X -]"), hpos); + _stprintf(l1, _T("[%02X %03X -]"), hpos, dhpos); } else { - _stprintf(l1, _T("[%02X ]"), hpos); + _stprintf(l1, _T("[%02X %03X ]"), hpos, dhpos); } if (l4) { _tcscpy(l4, _T(" ")); -- 2.47.3