fixed look behind bug

This commit is contained in:
aap 2020-04-05 15:27:30 +02:00
parent 5e9ae94298
commit 27f95d905c
1 changed files with 1 additions and 1 deletions

View File

@ -627,7 +627,7 @@ CCam::LookBehind(void)
DeltaBeta = TargetOrientation - Beta;
while(DeltaBeta >= PI) DeltaBeta -= 2*PI;
while(DeltaBeta < -PI) DeltaBeta += 2*PI;
if(DirectionWasLooking == LOOKING_BEHIND)
if(DirectionWasLooking != LOOKING_BEHIND)
LookBehindCamWasInFront = DeltaBeta <= -HALFPI || DeltaBeta >= HALFPI;
if(LookBehindCamWasInFront)
TargetOrientation += PI;