diff options
author | aap <aap@papnet.eu> | 2021-01-09 12:10:10 +0100 |
---|---|---|
committer | aap <aap@papnet.eu> | 2021-01-09 12:10:10 +0100 |
commit | 7f5deb0f97d2ff07a92dd84f4ef08303bbe32461 (patch) | |
tree | e1a8095437d5946798bcbd969abee72a9d4e4900 | |
parent | streaming fixes (diff) | |
download | re3-7f5deb0f97d2ff07a92dd84f4ef08303bbe32461.tar re3-7f5deb0f97d2ff07a92dd84f4ef08303bbe32461.tar.gz re3-7f5deb0f97d2ff07a92dd84f4ef08303bbe32461.tar.bz2 re3-7f5deb0f97d2ff07a92dd84f4ef08303bbe32461.tar.lz re3-7f5deb0f97d2ff07a92dd84f4ef08303bbe32461.tar.xz re3-7f5deb0f97d2ff07a92dd84f4ef08303bbe32461.tar.zst re3-7f5deb0f97d2ff07a92dd84f4ef08303bbe32461.zip |
-rw-r--r-- | src/core/Cam.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/core/Cam.cpp b/src/core/Cam.cpp index d4188299..731537ef 100644 --- a/src/core/Cam.cpp +++ b/src/core/Cam.cpp @@ -3947,11 +3947,11 @@ CCam::Process_Debug(const CVector&, float, float, float) } // stay inside sectors - while(CWorld::GetSectorX(Source.x) > 75.0f) + while(CWorld::GetSectorX(Source.x) > NUMSECTORS_X-5.0f) Source.x -= 1.0f; while(CWorld::GetSectorX(Source.x) < 5.0f) Source.x += 1.0f; - while(CWorld::GetSectorY(Source.y) > 75.0f) + while(CWorld::GetSectorY(Source.y) > NUMSECTORS_X-5.0f) Source.y -= 1.0f; while(CWorld::GetSectorY(Source.y) < 5.0f) Source.y += 1.0f; @@ -4018,11 +4018,11 @@ CCam::Process_Debug(const CVector&, float, float, float) } // stay inside sectors - while(CWorld::GetSectorX(Source.x) > 75.0f) + while(CWorld::GetSectorX(Source.x) > NUMSECTORS_X-5.0f) Source.x -= 1.0f; while(CWorld::GetSectorX(Source.x) < 5.0f) Source.x += 1.0f; - while(CWorld::GetSectorY(Source.y) > 75.0f) + while(CWorld::GetSectorY(Source.y) > NUMSECTORS_X-5.0f) Source.y -= 1.0f; while(CWorld::GetSectorY(Source.y) < 5.0f) Source.y += 1.0f; @@ -4099,11 +4099,11 @@ CCam::Process_Editor(const CVector&, float, float, float) } // stay inside sectors - while(CWorld::GetSectorX(Source.x) > 75.0f) + while(CWorld::GetSectorX(Source.x) > NUMSECTORS_X-5.0f) Source.x -= 1.0f; while(CWorld::GetSectorX(Source.x) < 5.0f) Source.x += 1.0f; - while(CWorld::GetSectorY(Source.y) > 75.0f) + while(CWorld::GetSectorY(Source.y) > NUMSECTORS_X-5.0f) Source.y -= 1.0f; while(CWorld::GetSectorY(Source.y) < 5.0f) Source.y += 1.0f; |