diff options
author | adrido <robots_only_adrido@gmx.com> | 2017-12-14 19:46:42 +0100 |
---|---|---|
committer | SmallJoker <SmallJoker@users.noreply.github.com> | 2017-12-14 19:46:42 +0100 |
commit | 551c12391a4ee1ab55fedd92433f740c4a0e2dec (patch) | |
tree | 38146ed7472c233a0c0993cb277858ff3fe76f37 /src/util/directiontables.cpp | |
parent | 2d9f0d344e45282638f9c1c1b57019c5e7f3999c (diff) | |
download | minetest-551c12391a4ee1ab55fedd92433f740c4a0e2dec.tar.gz minetest-551c12391a4ee1ab55fedd92433f740c4a0e2dec.tar.bz2 minetest-551c12391a4ee1ab55fedd92433f740c4a0e2dec.zip |
directiontables: Fix MSVC compiler error (#6785)
Diffstat (limited to 'src/util/directiontables.cpp')
-rw-r--r-- | src/util/directiontables.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/directiontables.cpp b/src/util/directiontables.cpp index b4d3eef23..296585f90 100644 --- a/src/util/directiontables.cpp +++ b/src/util/directiontables.cpp @@ -110,7 +110,7 @@ const v3s16 g_27dirs[27] = v3s16(0,0,0), }; -constexpr const u8 wallmounted_to_facedir[6] = { +const u8 wallmounted_to_facedir[6] = { 20, 0, 16 + 1, |