Skip to content

Commit 470f328

Browse files
authoredJul 29, 2020
Revert "Get rid of non-ascii characters in the debug display code (#8821)" (#9828)
This reverts commit 4f9ccd8.
1 parent 715a123 commit 470f328

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎src/client/gameui.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -133,9 +133,9 @@ void GameUI::update(const RunStats &stats, Client *client, MapDrawControl *draw_
133133
<< "pos: (" << (player_position.X / BS)
134134
<< ", " << (player_position.Y / BS)
135135
<< ", " << (player_position.Z / BS)
136-
<< ") | yaw: " << (wrapDegrees_0_360(cam.camera_yaw)) << "\xC2\xB0 "
136+
<< ") | yaw: " << (wrapDegrees_0_360(cam.camera_yaw)) << "° "
137137
<< yawToDirectionString(cam.camera_yaw)
138-
<< " | pitch: " << (-wrapDegrees_180(cam.camera_pitch)) << "\xC2\xB0"
138+
<< " | pitch: " << (-wrapDegrees_180(cam.camera_pitch)) << "°"
139139
<< " | seed: " << ((u64)client->getMapSeed());
140140

141141
if (pointed_old.type == POINTEDTHING_NODE) {

0 commit comments

Comments
 (0)
Please sign in to comment.