diff options
author | blingu <36486731+blingu@users.noreply.github.com> | 2020-03-25 23:01:22 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-25 23:01:22 +0100 |
commit | a66db9efcb5d3245248ac4b5b9accfe8e6b99768 (patch) | |
tree | 940060c261c2e02d18f3a9ba234634fa948e6170 | |
parent | added InflictDamage() declaration (diff) | |
download | re3-a66db9efcb5d3245248ac4b5b9accfe8e6b99768.tar re3-a66db9efcb5d3245248ac4b5b9accfe8e6b99768.tar.gz re3-a66db9efcb5d3245248ac4b5b9accfe8e6b99768.tar.bz2 re3-a66db9efcb5d3245248ac4b5b9accfe8e6b99768.tar.lz re3-a66db9efcb5d3245248ac4b5b9accfe8e6b99768.tar.xz re3-a66db9efcb5d3245248ac4b5b9accfe8e6b99768.tar.zst re3-a66db9efcb5d3245248ac4b5b9accfe8e6b99768.zip |
-rw-r--r-- | src/core/Fire.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/Fire.cpp b/src/core/Fire.cpp index 13d53d03..864c2509 100644 --- a/src/core/Fire.cpp +++ b/src/core/Fire.cpp @@ -25,8 +25,8 @@ CFire::CFire() m_bPropagationFlag = true; m_bAudioSet = true; m_vecPos = CVector(0.0f, 0.0f, 0.0f); - m_pEntity = 0; - m_pSource = 0; + m_pEntity = nil; + m_pSource = nil; m_nFiremenPuttingOut = 0; m_nExtinguishTime = 0; m_nStartTime = 0; |