2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 17:47:43 +00:00

CCompoundTargetingReticle: Remove mutable specifier on m_scanRetRenderer

This can be trivially resolved by dropping const qualifiers on the
necessary member functions.
This commit is contained in:
Lioncash
2020-04-09 21:28:50 -04:00
parent 35ca901784
commit b72d217a68
6 changed files with 13 additions and 12 deletions

View File

@@ -13,7 +13,7 @@ public:
explicit CTargetingManager(const CStateManager& stateMgr);
bool CheckLoadComplete();
void Update(float, const CStateManager& stateMgr);
void Draw(const CStateManager& stateMgr, bool hideLockon) const;
void Draw(const CStateManager& stateMgr, bool hideLockon);
void Touch();
CCompoundTargetReticle& CompoundTargetReticle() { return x0_targetReticule; }
};