From 7d1929427ec36f9d50244eef721ab7371549348d Mon Sep 17 00:00:00 2001 From: Joel Elrod Date: Sat, 8 Jul 2023 16:10:36 -0400 Subject: [PATCH] Rewrote vague comment. Signed-off-by: Joel Elrod --- Source/DSPSpy/main_spy.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Source/DSPSpy/main_spy.cpp b/Source/DSPSpy/main_spy.cpp index 1151c51d90..5f183ff9cf 100644 --- a/Source/DSPSpy/main_spy.cpp +++ b/Source/DSPSpy/main_spy.cpp @@ -586,8 +586,9 @@ int main() if (PAD_ButtonsDown(0) & PAD_BUTTON_B) #endif { - dsp_steps = - 0; // Let's not add the new steps after the original ones. That was just annoying. + // Reset step counter so that the ucode starts from the beginning instead of appending + // to the list of steps. + dsp_steps = 0; DCInvalidateRange(dspbufC, 0x2000); DCFlushRange(dspbufC, 0x2000);