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
1 changed files with 1 additions and 1 deletions

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 };