diff options
author | withmorten <morten.with@gmail.com> | 2021-01-21 03:20:31 +0100 |
---|---|---|
committer | withmorten <morten.with@gmail.com> | 2021-01-21 03:20:31 +0100 |
commit | f2596b3759e11098e27f440b129293adab1f4c07 (patch) | |
tree | 9157c19ae9a5c7c7fbfd3ec43ce6663297d050a1 /src/entities/Entity.cpp | |
parent | make building with Codewarrior 7 possible (diff) | |
parent | fixed saving (diff) | |
download | re3-f2596b3759e11098e27f440b129293adab1f4c07.tar re3-f2596b3759e11098e27f440b129293adab1f4c07.tar.gz re3-f2596b3759e11098e27f440b129293adab1f4c07.tar.bz2 re3-f2596b3759e11098e27f440b129293adab1f4c07.tar.lz re3-f2596b3759e11098e27f440b129293adab1f4c07.tar.xz re3-f2596b3759e11098e27f440b129293adab1f4c07.tar.zst re3-f2596b3759e11098e27f440b129293adab1f4c07.zip |
Diffstat (limited to 'src/entities/Entity.cpp')
-rw-r--r-- | src/entities/Entity.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/entities/Entity.cpp b/src/entities/Entity.cpp index 709f91c1..4885d631 100644 --- a/src/entities/Entity.cpp +++ b/src/entities/Entity.cpp @@ -407,7 +407,11 @@ CEntity::GetIsOnScreen(void) bool CEntity::GetIsOnScreenComplex(void) { - RwV3d boundBox[8]; +#ifdef GTA_PS2 + CVuVector boundBox[8]; +#else + CVector boundBox[8]; +#endif if(TheCamera.IsPointVisible(GetBoundCentre(), &TheCamera.GetCameraMatrix())) return true; |