summaryrefslogtreecommitdiffstats
path: root/src/render/PointLights.cpp
diff options
context:
space:
mode:
authorNikolay Korolev <nickvnuk@gmail.com>2019-06-30 23:18:10 +0200
committerNikolay Korolev <nickvnuk@gmail.com>2019-06-30 23:18:10 +0200
commitbe808bed539f866c72059aa61751144ce5bdb3a4 (patch)
tree2b629178b15fc7c46f3128efeb815ac05c65d044 /src/render/PointLights.cpp
parentCompleted CReplay (diff)
parentlittle cleanup (diff)
downloadre3-be808bed539f866c72059aa61751144ce5bdb3a4.tar
re3-be808bed539f866c72059aa61751144ce5bdb3a4.tar.gz
re3-be808bed539f866c72059aa61751144ce5bdb3a4.tar.bz2
re3-be808bed539f866c72059aa61751144ce5bdb3a4.tar.lz
re3-be808bed539f866c72059aa61751144ce5bdb3a4.tar.xz
re3-be808bed539f866c72059aa61751144ce5bdb3a4.tar.zst
re3-be808bed539f866c72059aa61751144ce5bdb3a4.zip
Diffstat (limited to 'src/render/PointLights.cpp')
-rw-r--r--src/render/PointLights.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/render/PointLights.cpp b/src/render/PointLights.cpp
index 2b840314..9e98a327 100644
--- a/src/render/PointLights.cpp
+++ b/src/render/PointLights.cpp
@@ -13,8 +13,6 @@
int16 &CPointLights::NumLights = *(int16*)0x95CC3E;
CRegisteredPointLight *CPointLights::aLights = (CRegisteredPointLight*)0x7096D0;
-//WRAPPER void CPointLights::RenderFogEffect(void) { EAXJMP(0x510C30); }
-
void
CPointLights::InitPerFrame(void)
{
@@ -69,7 +67,7 @@ CPointLights::GenerateLightsAffectingObject(CVector *objCoors)
ret = 1.0f;
for(i = 0; i < NumLights; i++){
- if(aLights[i].type == LIGHT_FOGONLY_3 || aLights[i].type == LIGHT_FOGONLY_4)
+ if(aLights[i].type == LIGHT_FOGONLY || aLights[i].type == LIGHT_FOGONLY_ALWAYS)
continue;
// same weird distance calculation. simplified here
@@ -235,7 +233,7 @@ CPointLights::RenderFogEffect(void)
}
}
- }else if(aLights[i].type == LIGHT_POINT || aLights[i].type == LIGHT_FOGONLY_3 || aLights[i].type == LIGHT_FOGONLY_4){
+ }else if(aLights[i].type == LIGHT_POINT || aLights[i].type == LIGHT_FOGONLY || aLights[i].type == LIGHT_FOGONLY_ALWAYS){
if(CWorld::ProcessVerticalLine(aLights[i].coors, aLights[i].coors.z - 20.0f,
point, entity, true, false, false, false, true, false, nil)){