From add01886b58054c6e0b40b3b80ca136fe8eebcb6 Mon Sep 17 00:00:00 2001 From: Paramat Date: Wed, 6 Mar 2019 19:18:46 +1300 Subject: [PATCH] F5 debug info: Use full words for NSEW directions for readability (#7461) --- src/game.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/game.cpp b/src/game.cpp index 2333a8eab..87054921b 100644 --- a/src/game.cpp +++ b/src/game.cpp @@ -4328,7 +4328,8 @@ void Game::updateFrame(ProfilerGraph *graph, RunStats *stats, f32 dtime, inline static const char *yawToDirectionString(int yaw) { - static const char *direction[4] = {"N +Z", "W -X", "S -Z", "E +X"}; + static const char *direction[4] = + {"North +Z", "West -X", "South -Z", "East +X"}; yaw = wrapDegrees_0_360(yaw); yaw = (yaw + 45) % 360 / 90;