From: Paramat Date: Fri, 5 Oct 2018 23:53:50 +0000 (+0100) Subject: F5 debug info: Use full words for NSEW directions for readability (#7461) X-Git-Tag: 5.0.0~224 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=b982e45456050bd055352b7d487b0fb88f8989d7;p=oweals%2Fminetest.git F5 debug info: Use full words for NSEW directions for readability (#7461) --- diff --git a/src/client/gameui.cpp b/src/client/gameui.cpp index 0a0fc2bcf..1f433e49a 100644 --- a/src/client/gameui.cpp +++ b/src/client/gameui.cpp @@ -33,7 +33,8 @@ with this program; if not, write to the Free Software Foundation, Inc., 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;