diff options
author | Perttu Ahola <celeron55@gmail.com> | 2012-06-17 18:05:13 +0300 |
---|---|---|
committer | Perttu Ahola <celeron55@gmail.com> | 2012-06-17 18:05:13 +0300 |
commit | c9a2058361647d81b8303fc6892f8fb28a4288c5 (patch) | |
tree | 61973267975b4ee0b4cc7f3a577923d12b34aadb /src/util/numeric.cpp | |
parent | 7039dfafd6abd71e3407038122c0559fea6e1146 (diff) | |
download | minetest-c9a2058361647d81b8303fc6892f8fb28a4288c5.tar.gz minetest-c9a2058361647d81b8303fc6892f8fb28a4288c5.tar.bz2 minetest-c9a2058361647d81b8303fc6892f8fb28a4288c5.zip |
Hopefully fix includes on mingw
Diffstat (limited to 'src/util/numeric.cpp')
-rw-r--r-- | src/util/numeric.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/numeric.cpp b/src/util/numeric.cpp index d082cdb76..0ac812eb7 100644 --- a/src/util/numeric.cpp +++ b/src/util/numeric.cpp @@ -19,8 +19,8 @@ with this program; if not, write to the Free Software Foundation, Inc., #include "numeric.h" -#include "log.h" -#include "constants.h" // BS, MAP_BLOCKSIZE +#include "../log.h" +#include "../constants.h" // BS, MAP_BLOCKSIZE #include <iostream> // Calculate the borders of a "d-radius" cube |