summaryrefslogtreecommitdiff
path: root/src/resources/resourcemanager.cpp
diff options
context:
space:
mode:
authorDouglas Boffey <DougABoffey@netscape.net>2008-07-27 18:48:35 +0000
committerDouglas Boffey <DougABoffey@netscape.net>2008-07-27 18:48:35 +0000
commit0287bf686f04b9aecd5e7c719a153a01313e69d9 (patch)
treec2583fef510ea0b205e7e398213cbf87d126bb11 /src/resources/resourcemanager.cpp
parentb7bc2f74f4f2253bd67b2d51fa3d2c47d648453e (diff)
downloadmana-client-0287bf686f04b9aecd5e7c719a153a01313e69d9.tar.gz
mana-client-0287bf686f04b9aecd5e7c719a153a01313e69d9.tar.bz2
mana-client-0287bf686f04b9aecd5e7c719a153a01313e69d9.tar.xz
mana-client-0287bf686f04b9aecd5e7c719a153a01313e69d9.zip
Changed files to tme
Diffstat (limited to 'src/resources/resourcemanager.cpp')
-rw-r--r--src/resources/resourcemanager.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/resources/resourcemanager.cpp b/src/resources/resourcemanager.cpp
index 6b45c9d7..ae255144 100644
--- a/src/resources/resourcemanager.cpp
+++ b/src/resources/resourcemanager.cpp
@@ -210,7 +210,7 @@ ResourceManager::getPath(const std::string &file)
// get the real path to the file
const char* tmp = PHYSFS_getRealDir(file.c_str());
std::string path;
-
+
// if the file is not in the search path, then its NULL
if (tmp)
{
@@ -219,9 +219,9 @@ ResourceManager::getPath(const std::string &file)
else
{
// if not found in search path return the default path
- path = std::string(TMW_DATADIR) + std::string("data") + "/" + file;
+ path = std::string(TME_DATADIR) + std::string("data") + "/" + file;
}
-
+
return path;
}