From 1c3838ab8fd01a1304e2b109190a2f2beddbf3d2 Mon Sep 17 00:00:00 2001 From: tomcw Date: Sun, 12 Mar 2017 21:56:42 +0000 Subject: [PATCH] Debugger: removed unused var --- source/Debugger/Debug.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/source/Debugger/Debug.cpp b/source/Debugger/Debug.cpp index fa40b896..f6419cb1 100644 --- a/source/Debugger/Debug.cpp +++ b/source/Debugger/Debug.cpp @@ -8505,7 +8505,6 @@ static void CheckBreakOpcode( int iOpcode ) void DebugContinueStepping () { - static UINT nStepsTaken = 0; static bool bForceSingleStepNext = false; // Allow at least one instruction to execute so we don't trigger on the same invalid opcode if (g_nDebugSkipLen > 0) @@ -8615,7 +8614,6 @@ void DebugContinueStepping () Update_t bUpdate = UPDATE_ALL; UpdateDisplay( bUpdate ); - nStepsTaken = 0; } }