From 00584f631d93058f5168f6860056bf27b6f6bc23 Mon Sep 17 00:00:00 2001 From: disinvite Date: Mon, 26 Jan 2026 21:23:45 -0500 Subject: [PATCH] Fix variable name --- LEGO1/lego/legoomni/src/common/legotesttimer.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/LEGO1/lego/legoomni/src/common/legotesttimer.cpp b/LEGO1/lego/legoomni/src/common/legotesttimer.cpp index aeda753a..e40d9a62 100644 --- a/LEGO1/lego/legoomni/src/common/legotesttimer.cpp +++ b/LEGO1/lego/legoomni/src/common/legotesttimer.cpp @@ -81,12 +81,12 @@ void LegoTestTimer::Tick(LegoS32 p_timer) } m_lastTime[p_timer] = time; - LegoS32 local_14 = dtim / m_interval; - if (local_14 >= m_numBins) { - local_14 = m_numBins - 1; + LegoS32 binIndex = dtim / m_interval; + if (binIndex >= m_numBins) { + binIndex = m_numBins - 1; } - m_timers[p_timer][local_14]++; + m_timers[p_timer][binIndex]++; m_totalTime[p_timer] += dtim; } }