diff options
author | Loic Blot <loic.blot@unix-experience.fr> | 2015-03-05 11:52:57 +0100 |
---|---|---|
committer | Loic Blot <loic.blot@unix-experience.fr> | 2015-03-05 11:59:40 +0100 |
commit | 0d1eedcccc8b83fd5f5a9a75389fe8ac97d2c697 (patch) | |
tree | 2599bf47d98c80bf08d7253bc68ffe7dcff1ceea /src/nodedef.cpp | |
parent | aa474e4501f460ba853dc70ff4d97cbd061e6704 (diff) | |
download | minetest-0d1eedcccc8b83fd5f5a9a75389fe8ac97d2c697.tar.gz minetest-0d1eedcccc8b83fd5f5a9a75389fe8ac97d2c697.tar.bz2 minetest-0d1eedcccc8b83fd5f5a9a75389fe8ac97d2c697.zip |
Replace std::list to std::vector into tile.cpp (m_texture_trash) and move tile.hpp to src/client/
Diffstat (limited to 'src/nodedef.cpp')
-rw-r--r-- | src/nodedef.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nodedef.cpp b/src/nodedef.cpp index bcf51a072..ac49b4f3c 100644 --- a/src/nodedef.cpp +++ b/src/nodedef.cpp @@ -22,7 +22,7 @@ with this program; if not, write to the Free Software Foundation, Inc., #include "main.h" // For g_settings #include "itemdef.h" #ifndef SERVER -#include "tile.h" +#include "client/tile.h" #include "mesh.h" #include <IMeshManipulator.h> #endif |