aboutsummaryrefslogtreecommitdiff
path: root/src/render/Particle.cpp
diff options
context:
space:
mode:
authorerorcun <erorcunerorcun@hotmail.com.tr>2020-10-18 19:16:37 +0300
committererorcun <erorcunerorcun@hotmail.com.tr>2020-10-18 19:16:37 +0300
commita6aa782d6d5fa9a2165dafec5794a2e2cfbc653f (patch)
treedea344ffa5b7073b94b94a35dee13519fbc04b82 /src/render/Particle.cpp
parent4c305fd48bda02eabf56ca948bdab02ed9867362 (diff)
Fixes and style changes from miami
Diffstat (limited to 'src/render/Particle.cpp')
-rw-r--r--src/render/Particle.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/render/Particle.cpp b/src/render/Particle.cpp
index a867ae13..acce946b 100644
--- a/src/render/Particle.cpp
+++ b/src/render/Particle.cpp
@@ -302,8 +302,8 @@ void CParticle::Initialise()
{
float angle = DEGTORAD(float(i) * float(360.0f / SIN_COS_TABLE_SIZE));
- m_SinTable[i] = Sin(angle);
- m_CosTable[i] = Cos(angle);
+ m_SinTable[i] = ::Sin(angle);
+ m_CosTable[i] = ::Cos(angle);
}
int32 slot = CTxdStore::FindTxdSlot("particle");