diff options
author | aap <aap@papnet.eu> | 2019-06-28 19:00:26 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-28 19:00:26 +0200 |
commit | 3bc17b39c244786ec22e369f5da2c762b5d593f6 (patch) | |
tree | 71933b3094716a174bdaf5ed3036ad92ac1c3ee7 /src/render/Shadows.cpp | |
parent | CHud cleanup: fixes and cosmetic treatment (diff) | |
parent | Footsteps (diff) | |
download | re3-3bc17b39c244786ec22e369f5da2c762b5d593f6.tar re3-3bc17b39c244786ec22e369f5da2c762b5d593f6.tar.gz re3-3bc17b39c244786ec22e369f5da2c762b5d593f6.tar.bz2 re3-3bc17b39c244786ec22e369f5da2c762b5d593f6.tar.lz re3-3bc17b39c244786ec22e369f5da2c762b5d593f6.tar.xz re3-3bc17b39c244786ec22e369f5da2c762b5d593f6.tar.zst re3-3bc17b39c244786ec22e369f5da2c762b5d593f6.zip |
Diffstat (limited to '')
-rw-r--r-- | src/render/Shadows.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/render/Shadows.cpp b/src/render/Shadows.cpp index d89338c1..cb5cedfb 100644 --- a/src/render/Shadows.cpp +++ b/src/render/Shadows.cpp @@ -2,9 +2,11 @@ #include "patcher.h" #include "Shadows.h" -WRAPPER void CShadows::AddPermanentShadow(unsigned char ShadowType, RwTexture* pTexture, CVector* pPosn, float fX1, float fY1, float fX2, float fY2, short nTransparency, unsigned char nRed, unsigned char nGreen, unsigned char nBlue, float fZDistance, unsigned int nTime, float fScale) { EAXJMP(0x512FD0); } +WRAPPER void CShadows::AddPermanentShadow(uint8 ShadowType, RwTexture* pTexture, CVector* pPosn, float fX1, float fY1, float fX2, float fY2, short nTransparency, uint8 nRed, uint8 nGreen, uint8 nBlue, float fZDistance, uint32 nTime, float fScale) { EAXJMP(0x512FD0); } WRAPPER void CShadows::RenderStaticShadows(void) { EAXJMP(0x5145F0); } WRAPPER void CShadows::RenderStoredShadows(void) { EAXJMP(0x514010); } WRAPPER void CShadows::RenderExtraPlayerShadows(void) { EAXJMP(0x516F90); } WRAPPER void CShadows::CalcPedShadowValues(CVector light, float *frontX, float *frontY, float *sideX, float *sideY, float *dispX, float *dispY) { EAXJMP(0x516EB0); } WRAPPER void CShadows::StoreShadowForPedObject(CEntity *ent, float dispX, float dispY, float frontX, float frontY, float sideX, float sideY) { EAXJMP(0x513CB0); } + +RwTexture*& gpBloodPoolTex = *(RwTexture * *)0x9415F8;
\ No newline at end of file |