diff options
author | Perttu Ahola <celeron55@gmail.com> | 2011-11-10 23:30:12 +0200 |
---|---|---|
committer | Perttu Ahola <celeron55@gmail.com> | 2011-11-29 19:11:04 +0200 |
commit | ee8b6d34447acab3ffb318dc8c070df890c1b810 (patch) | |
tree | 1b7bb1741effe3b7c9dee6582a60a380edb24e55 /src/porting.cpp | |
parent | 2115a766f6ef7eefc122d1c91a28fe94f664a11a (diff) | |
download | minetest-ee8b6d34447acab3ffb318dc8c070df890c1b810.tar.gz minetest-ee8b6d34447acab3ffb318dc8c070df890c1b810.tar.bz2 minetest-ee8b6d34447acab3ffb318dc8c070df890c1b810.zip |
Move images to data/textures and fix some path stuff; hope that installation still works
Diffstat (limited to 'src/porting.cpp')
-rw-r--r-- | src/porting.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/porting.cpp b/src/porting.cpp index f3a0ab074..00595b06c 100644 --- a/src/porting.cpp +++ b/src/porting.cpp @@ -125,6 +125,11 @@ void signal_handler_init(void) std::string path_data = ".." DIR_DELIM "data"; std::string path_userdata = ".."; +std::string getDataPath(const char *subpath) +{ + return path_data + DIR_DELIM + subpath; +} + void pathRemoveFile(char *path, char delim) { // Remove filename and path delimiter |