From b982e45456050bd055352b7d487b0fb88f8989d7 Mon Sep 17 00:00:00 2001 From: Paramat Date: Sat, 6 Oct 2018 00:53:50 +0100 Subject: F5 debug info: Use full words for NSEW directions for readability (#7461) --- src/client/gameui.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/client/gameui.cpp') 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; -- cgit v1.2.3