From: Toni Wilen Date: Sat, 13 Apr 2024 19:47:24 +0000 (+0300) Subject: Fix missing Denise horizontal counter in DMA debugger X-Git-Tag: 5300~38 X-Git-Url: https://git.unchartedbackwaters.co.uk/w/?a=commitdiff_plain;h=129a8348b20a3c76015824021e08e4453898f253;p=francis%2Fwinuae.git Fix missing Denise horizontal counter in DMA debugger --- 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(" "));