]> git.lizzy.rs Git - minetest.git/blobdiff - src/client/gameui.cpp
Add object visual type 'item' (#7870)
[minetest.git] / src / client / gameui.cpp
index 0a0fc2bcf323d24d068b8b77f901649ac4644d58..1f433e49a261436dc01333a6626ebbcf118d67f3 100644 (file)
@@ -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;