Skip to content

Commit b982e45

Browse files
authoredOct 5, 2018
F5 debug info: Use full words for NSEW directions for readability (#7461)
1 parent d77f3b3 commit b982e45

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

Diff for: ‎src/client/gameui.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ with this program; if not, write to the Free Software Foundation, Inc.,
3333

3434
inline static const char *yawToDirectionString(int yaw)
3535
{
36-
static const char *direction[4] = {"N +Z", "W -X", "S -Z", "E +X"};
36+
static const char *direction[4] =
37+
{"North +Z", "West -X", "South -Z", "East +X"};
3738

3839
yaw = wrapDegrees_0_360(yaw);
3940
yaw = (yaw + 45) % 360 / 90;

0 commit comments

Comments
 (0)