2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-07-02 02:53:29 +00:00

CModelData: Initialize m_drawInstCount to zero

Allows for deterministic initial state to make debugging nicer.
This commit is contained in:
Lioncash 2020-03-31 04:53:01 -04:00
parent 1415265ef2
commit 7b9018dbf0

View File

@ -79,7 +79,7 @@ class CModelData {
std::unique_ptr<CBooModel> m_xrayModelInst;
std::unique_ptr<CBooModel> m_infraModelInst;
int m_drawInstCount;
int m_drawInstCount = 0;
public:
enum class EWhichModel { Normal, XRay, Thermal, ThermalHot };