diff options
author | aap <aap@papnet.eu> | 2019-07-08 21:38:06 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-08 21:38:06 +0200 |
commit | a2cecd4e97ad3dc3012434dbec91fed9dc6e7048 (patch) | |
tree | 61870c8705c32ba02fbec0d62005b7f783ebedbb /src/render | |
parent | edf5ac2626ce17b74037281aa3c9730902b4b1d4 (diff) | |
parent | b1d1d6f7016e803d956310c92be376ad55000172 (diff) |
Merge pull request #122 from Nick007J/master
More script stuff
Diffstat (limited to 'src/render')
-rw-r--r-- | src/render/Hud.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/render/Hud.cpp b/src/render/Hud.cpp index 754f4b85..b3264dc7 100644 --- a/src/render/Hud.cpp +++ b/src/render/Hud.cpp @@ -862,7 +862,7 @@ void CHud::Draw() CScriptRectangle* IntroRect = CTheScripts::IntroRectangles; for (int i = 0; i < 16; i++) { - if (CTheScripts::IntroRectangles[i].m_bIsUsed && CTheScripts::IntroRectangles[i].m_bIsAntialiased) { + if (CTheScripts::IntroRectangles[i].m_bIsUsed && CTheScripts::IntroRectangles[i].m_bBeforeFade) { if (CTheScripts::IntroRectangles[i].m_nTextureId >= 0) { CRect rect = { CTheScripts::IntroRectangles[i].m_sRect.left, |