Skip to content

Commit

Permalink
Change sign of pitch angle in debug menu (#8438)
Browse files Browse the repository at this point in the history
Co-Authored-By: ClobberXD <ClobberXD@gmail.com>
  • Loading branch information
ClobberXD authored and paramat committed Apr 4, 2019
1 parent 4f7674d commit d111865
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/client/gameui.cpp
Expand Up @@ -128,7 +128,7 @@ void GameUI::update(const RunStats &stats, Client *client, MapDrawControl *draw_
<< ", " << (player_position.Z / BS)
<< "), yaw: " << (wrapDegrees_0_360(cam.camera_yaw)) << "° "
<< yawToDirectionString(cam.camera_yaw)
<< ", pitch: " << (wrapDegrees_180(cam.camera_pitch)) << "°"
<< ", pitch: " << (-wrapDegrees_180(cam.camera_pitch)) << "°"
<< ", seed: " << ((u64)client->getMapSeed());

if (pointed_old.type == POINTEDTHING_NODE) {
Expand Down

0 comments on commit d111865

Please sign in to comment.