diff options
author | Perttu Ahola <celeron55@gmail.com> | 2011-11-15 08:48:24 +0200 |
---|---|---|
committer | Perttu Ahola <celeron55@gmail.com> | 2011-11-29 19:13:43 +0200 |
commit | e71744b918898b98ffa5ae949fbf2a1b877b254c (patch) | |
tree | 0de31e6f86d5bfb9027ca4a0eb4494b059055721 /src/tile.cpp | |
parent | 40e7a1a5c9155f40ed07e09658e677533cac33f9 (diff) | |
download | minetest-e71744b918898b98ffa5ae949fbf2a1b877b254c.tar.xz |
Modify mod and texture directory hierarchies
Diffstat (limited to 'src/tile.cpp')
-rw-r--r-- | src/tile.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tile.cpp b/src/tile.cpp index c8fffffa7..eb3616f02 100644 --- a/src/tile.cpp +++ b/src/tile.cpp @@ -132,7 +132,7 @@ std::string getTexturePath(const std::string &filename) */ if(fullpath == "") { - std::string rel_path = std::string("textures")+DIR_DELIM+filename; + std::string rel_path = std::string("clienttextures")+DIR_DELIM+filename; std::string testpath = porting::path_data + DIR_DELIM + rel_path; // Check all filename extensions. Returns "" if not found. fullpath = getImagePath(testpath); |