mirror of
https://github.com/luanti-org/luanti.git
synced 2025-07-22 17:18:39 +00:00
Get rid of non-ascii characters in the debug display code (#8821)
This commit is contained in:
parent
664800b2ad
commit
4f9ccd89b3
1 changed files with 2 additions and 2 deletions
|
@ -128,9 +128,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)) << "° "
|
||||
<< ") | yaw: " << (wrapDegrees_0_360(cam.camera_yaw)) << "\xC2\xB0 "
|
||||
<< yawToDirectionString(cam.camera_yaw)
|
||||
<< " | pitch: " << (-wrapDegrees_180(cam.camera_pitch)) << "°"
|
||||
<< " | pitch: " << (-wrapDegrees_180(cam.camera_pitch)) << "\xC2\xB0"
|
||||
<< " | seed: " << ((u64)client->getMapSeed());
|
||||
|
||||
if (pointed_old.type == POINTEDTHING_NODE) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue