summaryrefslogtreecommitdiffstats
path: root/src/render/Shadows.cpp
diff options
context:
space:
mode:
authoraap <aap@papnet.eu>2020-05-25 20:36:18 +0200
committeraap <aap@papnet.eu>2020-05-25 20:36:23 +0200
commit3c3b1aadc0bfd3b8d58cc9dcc269d83f6a003235 (patch)
treed1e86b5e9fe98616c3bb83554381e681330b6b6e /src/render/Shadows.cpp
parentEven more audio cleanups (diff)
downloadre3-3c3b1aadc0bfd3b8d58cc9dcc269d83f6a003235.tar
re3-3c3b1aadc0bfd3b8d58cc9dcc269d83f6a003235.tar.gz
re3-3c3b1aadc0bfd3b8d58cc9dcc269d83f6a003235.tar.bz2
re3-3c3b1aadc0bfd3b8d58cc9dcc269d83f6a003235.tar.lz
re3-3c3b1aadc0bfd3b8d58cc9dcc269d83f6a003235.tar.xz
re3-3c3b1aadc0bfd3b8d58cc9dcc269d83f6a003235.tar.zst
re3-3c3b1aadc0bfd3b8d58cc9dcc269d83f6a003235.zip
Diffstat (limited to 'src/render/Shadows.cpp')
-rw-r--r--src/render/Shadows.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/render/Shadows.cpp b/src/render/Shadows.cpp
index 69f9dce0..d07c302a 100644
--- a/src/render/Shadows.cpp
+++ b/src/render/Shadows.cpp
@@ -642,12 +642,12 @@ CShadows::StoreShadowForPole(CEntity *pPole, float fOffsetX, float fOffsetY, flo
PolePos.y += fOffsetX * pPole->GetRight().y + fOffsetY * pPole->GetForward().y;
PolePos.z += fOffsetZ;
- PolePos.x += -CTimeCycle::GetSunPosition().x * (fPoleHeight / 2);
- PolePos.y += -CTimeCycle::GetSunPosition().y * (fPoleHeight / 2);
+ PolePos.x += -CTimeCycle::GetSunDirection().x * (fPoleHeight / 2);
+ PolePos.y += -CTimeCycle::GetSunDirection().y * (fPoleHeight / 2);
StoreStaticShadow((uintptr)pPole + nID + _TODOCONST(51), SHADOWTYPE_DARK, gpPostShadowTex, &PolePos,
- -CTimeCycle::GetSunPosition().x * (fPoleHeight / 2),
- -CTimeCycle::GetSunPosition().y * (fPoleHeight / 2),
+ -CTimeCycle::GetSunDirection().x * (fPoleHeight / 2),
+ -CTimeCycle::GetSunDirection().y * (fPoleHeight / 2),
CTimeCycle::GetShadowSideX() * fPoleWidth,
CTimeCycle::GetShadowSideY() * fPoleWidth,
2 * (int32)((pPole->GetUp().z - 0.5f) * CTimeCycle::GetShadowStrength() * 2.0f) / 3,