Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Revert "Get rid of non-ascii characters in the debug display code (#8821
)" (#9828)

This reverts commit 4f9ccd8.
  • Loading branch information
appgurueu committed Jul 29, 2020
1 parent 715a123 commit 470f328
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/client/gameui.cpp
Expand Up @@ -133,9 +133,9 @@ void GameUI::update(const RunStats &stats, Client *client, MapDrawControl *draw_
<< "pos: (" << (player_position.X / BS)
<< ", " << (player_position.Y / BS)
<< ", " << (player_position.Z / BS)
<< ") | yaw: " << (wrapDegrees_0_360(cam.camera_yaw)) << "\xC2\xB0 "
<< ") | yaw: " << (wrapDegrees_0_360(cam.camera_yaw)) << "° "
<< yawToDirectionString(cam.camera_yaw)
<< " | pitch: " << (-wrapDegrees_180(cam.camera_pitch)) << "\xC2\xB0"
<< " | pitch: " << (-wrapDegrees_180(cam.camera_pitch)) << "°"
<< " | seed: " << ((u64)client->getMapSeed());

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

0 comments on commit 470f328

Please sign in to comment.