mirror of
https://github.com/GTAmodding/re3.git
synced 2025-07-05 16:14:09 +00:00
Linux build support
This commit is contained in:
parent
c66c45f4c8
commit
8a4fa58cd4
54 changed files with 1373 additions and 362 deletions
|
@ -645,7 +645,7 @@ CShadows::StoreShadowForPole(CEntity *pPole, float fOffsetX, float fOffsetY, flo
|
|||
PolePos.x += -CTimeCycle::GetSunPosition().x * (fPoleHeight / 2);
|
||||
PolePos.y += -CTimeCycle::GetSunPosition().y * (fPoleHeight / 2);
|
||||
|
||||
StoreStaticShadow((uint32)pPole + nID + _TODOCONST(51), SHADOWTYPE_DARK, gpPostShadowTex, &PolePos,
|
||||
StoreStaticShadow((uintptr)pPole + nID + _TODOCONST(51), SHADOWTYPE_DARK, gpPostShadowTex, &PolePos,
|
||||
-CTimeCycle::GetSunPosition().x * (fPoleHeight / 2),
|
||||
-CTimeCycle::GetSunPosition().y * (fPoleHeight / 2),
|
||||
CTimeCycle::GetShadowSideX() * fPoleWidth,
|
||||
|
@ -1516,7 +1516,7 @@ CShadows::UpdatePermanentShadows(void)
|
|||
// timePassed == aPermanentShadows[i].m_nLifeTime -> 0
|
||||
float fMult = 1.0f - float(timePassed - (aPermanentShadows[i].m_nLifeTime * 3 / 4)) / (aPermanentShadows[i].m_nLifeTime / 4);
|
||||
|
||||
StoreStaticShadow((uint32)&aPermanentShadows[i],
|
||||
StoreStaticShadow((uintptr)&aPermanentShadows[i],
|
||||
aPermanentShadows[i].m_nType,
|
||||
aPermanentShadows[i].m_pTexture,
|
||||
&aPermanentShadows[i].m_vecPos,
|
||||
|
@ -1533,7 +1533,7 @@ CShadows::UpdatePermanentShadows(void)
|
|||
}
|
||||
else
|
||||
{
|
||||
StoreStaticShadow((uint32)&aPermanentShadows[i],
|
||||
StoreStaticShadow((uintptr)&aPermanentShadows[i],
|
||||
aPermanentShadows[i].m_nType,
|
||||
aPermanentShadows[i].m_pTexture,
|
||||
&aPermanentShadows[i].m_vecPos,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue