Skip to content

Commit

Permalink
invert camera x rotation, making it consistent with other programs
Browse files Browse the repository at this point in the history
  • Loading branch information
Theverat committed May 3, 2017
1 parent 4132f17 commit 4f4172b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src_viewer/camera.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Camera::Camera()
void Camera::rotateX(float angle)
{
dirty = true;
xAngle += angle;
xAngle -= angle;
}

void Camera::rotateY(float angle)
Expand Down

0 comments on commit 4f4172b

Please sign in to comment.