mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-15 16:29:00 +00:00
fixed look behind bug
This commit is contained in:
parent
5e9ae94298
commit
27f95d905c
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue