From 2fadaf544d79b131c15fc24e83dd381a1016b906 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Thu, 9 Apr 2020 21:35:14 -0400 Subject: [PATCH] CCompoundTargetReticle: Remove mutable specifier on x28_noDrawTicks This is no longer needed at all. --- Runtime/GuiSys/CCompoundTargetReticle.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Runtime/GuiSys/CCompoundTargetReticle.hpp b/Runtime/GuiSys/CCompoundTargetReticle.hpp index 4c3470d4a..7d8f20a53 100644 --- a/Runtime/GuiSys/CCompoundTargetReticle.hpp +++ b/Runtime/GuiSys/CCompoundTargetReticle.hpp @@ -69,7 +69,7 @@ private: zeus::CQuaternion x10_laggingOrientation; EReticleState x20_prevState = EReticleState::Unspecified; EReticleState x24_nextState = EReticleState::Unspecified; - mutable u32 x28_noDrawTicks = 0; + u32 x28_noDrawTicks = 0; float x2c_overshootOffsetHalf; float x30_premultOvershootOffset; TCachedToken x34_crosshairs;