From 3c53d47105fa548ec7a1f70579371cdf328a0c61 Mon Sep 17 00:00:00 2001 From: Toni Wilen Date: Sat, 14 Dec 2019 20:06:02 +0200 Subject: [PATCH] DMA debugger command parsing fix. --- debug.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)) -- 2.47.3