From: Toni Wilen Date: Sat, 14 Dec 2019 18:06:02 +0000 (+0200) Subject: DMA debugger command parsing fix. X-Git-Tag: 4300~7 X-Git-Url: https://git.unchartedbackwaters.co.uk/w/?a=commitdiff_plain;h=3c53d47105fa548ec7a1f70579371cdf328a0c61;p=francis%2Fwinuae.git DMA debugger command parsing fix. --- diff --git a/debug.cpp b/debug.cpp index ad7325df..472d6702 100644 --- a/debug.cpp +++ b/debug.cpp @@ -5901,12 +5901,12 @@ static bool debug_line (TCHAR *input) } } } else { - int nextcmd = peekchar(&inptr); if (more_params(&inptr) && *inptr == '?') { mw_help(); } else { free_heatmap(); - if (nextcmd != ' ') { + int nextcmd = peekchar(&inptr); + if (nextcmd == 'l') { next_char(&inptr); } if (more_params (&inptr))