summaryrefslogtreecommitdiffstats
path: root/src/core/FileLoader.cpp
diff options
context:
space:
mode:
authorerorcun <erayorcunus@gmail.com>2020-03-02 01:09:51 +0100
committerGitHub <noreply@github.com>2020-03-02 01:09:51 +0100
commitde68d726a3dc005d9dd395a42d393bc1f43104d4 (patch)
treeee6cb8fbeec9622d4dd7dab02022592540de30ff /src/core/FileLoader.cpp
parentMerge pull request #336 from Nick007J/master (diff)
parentFixes and cleanup (diff)
downloadre3-de68d726a3dc005d9dd395a42d393bc1f43104d4.tar
re3-de68d726a3dc005d9dd395a42d393bc1f43104d4.tar.gz
re3-de68d726a3dc005d9dd395a42d393bc1f43104d4.tar.bz2
re3-de68d726a3dc005d9dd395a42d393bc1f43104d4.tar.lz
re3-de68d726a3dc005d9dd395a42d393bc1f43104d4.tar.xz
re3-de68d726a3dc005d9dd395a42d393bc1f43104d4.tar.zst
re3-de68d726a3dc005d9dd395a42d393bc1f43104d4.zip
Diffstat (limited to 'src/core/FileLoader.cpp')
-rw-r--r--src/core/FileLoader.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/FileLoader.cpp b/src/core/FileLoader.cpp
index b49fccbb..6305bf33 100644
--- a/src/core/FileLoader.cpp
+++ b/src/core/FileLoader.cpp
@@ -952,9 +952,9 @@ CFileLoader::Load2dEffect(const char *line)
effect->light.lightType = lightType;
effect->light.roadReflection = roadReflection;
effect->light.flareType = flare;
- // TODO: check out the flags
- if(flags & 4)
- flags &= ~2;
+
+ if(flags & LIGHTFLAG_FOG_ALWAYS)
+ flags &= ~LIGHTFLAG_FOG_NORMAL;
effect->light.flags = flags;
break;