From a1ba9e34c4032ef8e12da5d63024a52c63dd45ef Mon Sep 17 00:00:00 2001 From: phosit Date: Mon, 24 Nov 2025 20:25:55 +0100 Subject: [PATCH] Remove unused m_DeltaTime Seems to be unused since c684c211a2 --- source/simulation2/Simulation2.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/source/simulation2/Simulation2.cpp b/source/simulation2/Simulation2.cpp index 7d94cf994c..3ebb88793b 100644 --- a/source/simulation2/Simulation2.cpp +++ b/source/simulation2/Simulation2.cpp @@ -110,7 +110,6 @@ public: void ResetState(bool skipScriptedComponents, bool skipAI) { - m_DeltaTime = 0.0; m_LastFrameOffset = 0.0f; m_TurnNumber = 0; ResetComponentState(m_ComponentManager, skipScriptedComponents, skipAI); @@ -142,7 +141,6 @@ public: CSimContext m_SimContext; CComponentManager m_ComponentManager; - double m_DeltaTime; float m_LastFrameOffset; std::string m_StartupScript;