From d283f7505cbfbec7ae7408f3eeed508c80fb3ef4 Mon Sep 17 00:00:00 2001 From: Yaman Date: Sat, 27 Dec 2014 10:17:45 -0500 Subject: [PATCH] Changed Directions to North(+Z), etc... --- src/game.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/game.cpp b/src/game.cpp index 6d75729c5..6efbe75f9 100644 --- a/src/game.cpp +++ b/src/game.cpp @@ -4004,16 +4004,16 @@ void Game::updateGui(float *statustext_time, const RunStats &stats, const char* player_direction; if (yaw >= 45 and yaw < 135) { - player_direction = "West"; + player_direction = "West(-X)"; } else if (yaw >= 135 and yaw < 225) { - player_direction = "South"; + player_direction = "South(-Z)"; } else if (yaw >= 225 and yaw < 315) { - player_direction = "East"; + player_direction = "East(+X)"; } else { - player_direction = "North"; + player_direction = "North(+Z)"; } std::ostringstream os(std::ios_base::binary);