Skip to content

Commit

Permalink
#5424: Fix up/down strafe movement not working in camera free look mode
Browse files Browse the repository at this point in the history
  • Loading branch information
codereader committed Nov 22, 2020
1 parent 7f4b91b commit e6a8b01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion radiant/camera/CamWnd.cpp
Expand Up @@ -804,7 +804,7 @@ void CamWnd::performFreeMove(int dx, int dy)
origin += _camera->getForwardVector() * strafespeed * dy * forwardStrafeFactor;
}
else {
origin += _camera->getForwardVector() * strafespeed * dy;
origin += _camera->getUpVector() * strafespeed * dy;
}
}
else // free rotation
Expand Down

0 comments on commit e6a8b01

Please sign in to comment.