Skip to content
This repository has been archived by the owner. It is now read-only.
Permalink
Browse files
cam sector fix
  • Loading branch information
aap committed Jan 9, 2021
1 parent 02f6ed7 commit 822f0bd40b637839c4d8832a791e3a12f102b198
Showing with 6 additions and 6 deletions.
  1. +6 −6 src/core/Cam.cpp
@@ -3829,11 +3829,11 @@ CCam::Process_Debug(const CVector&, float, float, float)
}

// stay inside sectors
while(CWorld::GetSectorX(Source.x) > 95.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) > 95.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;
@@ -3900,11 +3900,11 @@ CCam::Process_Debug(const CVector&, float, float, float)
}

// stay inside sectors
while(CWorld::GetSectorX(Source.x) > 95.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) > 95.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;
@@ -3981,11 +3981,11 @@ CCam::Process_Editor(const CVector&, float, float, float)
}

// stay inside sectors
while(CWorld::GetSectorX(Source.x) > 95.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) > 95.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;

0 comments on commit 822f0bd

Please sign in to comment.