aboutsummaryrefslogtreecommitdiffstats
path: root/src/renderer/ParticleMgr.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/renderer/ParticleMgr.h')
-rw-r--r--src/renderer/ParticleMgr.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/renderer/ParticleMgr.h b/src/renderer/ParticleMgr.h
index f4afc018..16da2c5f 100644
--- a/src/renderer/ParticleMgr.h
+++ b/src/renderer/ParticleMgr.h
@@ -124,15 +124,18 @@ class cParticleSystemMgr
};
public:
- tParticleSystemData m_aParticles[MAX_PARTICLES];
+ tParticleSystemData *m_aParticles;//[MAX_PARTICLES];
cParticleSystemMgr();
+#ifdef FIX_BUGS
+ ~cParticleSystemMgr();
+#endif
void Initialise();
void LoadParticleData();
void RangeCheck(tParticleSystemData *pData) { }
};
-VALIDATE_SIZE(cParticleSystemMgr, 0x2FFC);
+VALIDATE_SIZE(cParticleSystemMgr, 0x4);
extern cParticleSystemMgr mod_ParticleSystemManager;