diff options
author | aap <aap@papnet.eu> | 2020-04-23 22:10:46 +0200 |
---|---|---|
committer | aap <aap@papnet.eu> | 2020-04-23 22:10:46 +0200 |
commit | 6467e2003a0fc9f6bb5f8b86dd699b674f5e5b9a (patch) | |
tree | f98c56e1e5428a9cd9dd6c26369a3358727db78b /src/render/ParticleMgr.h | |
parent | fixed extra directory issues (diff) | |
parent | removed fix that made no sense (diff) | |
download | re3-6467e2003a0fc9f6bb5f8b86dd699b674f5e5b9a.tar re3-6467e2003a0fc9f6bb5f8b86dd699b674f5e5b9a.tar.gz re3-6467e2003a0fc9f6bb5f8b86dd699b674f5e5b9a.tar.bz2 re3-6467e2003a0fc9f6bb5f8b86dd699b674f5e5b9a.tar.lz re3-6467e2003a0fc9f6bb5f8b86dd699b674f5e5b9a.tar.xz re3-6467e2003a0fc9f6bb5f8b86dd699b674f5e5b9a.tar.zst re3-6467e2003a0fc9f6bb5f8b86dd699b674f5e5b9a.zip |
Diffstat (limited to '')
-rw-r--r-- | src/render/ParticleMgr.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/render/ParticleMgr.h b/src/render/ParticleMgr.h index 0b4091de..70845a56 100644 --- a/src/render/ParticleMgr.h +++ b/src/render/ParticleMgr.h @@ -118,11 +118,11 @@ class cParticleSystemMgr public: tParticleSystemData m_aParticles[MAX_PARTICLES]; - cParticleSystemMgr() { ctor(); } void ctor(); + cParticleSystemMgr(); void Initialise(); void LoadParticleData(); - //void RangeCheck(tParticleSystemData *pData); + void RangeCheck(tParticleSystemData *pData) { } }; VALIDATE_SIZE(cParticleSystemMgr, 0x2420); |