diff options
author | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2011-07-24 19:20:40 +0200 |
---|---|---|
committer | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2011-07-24 19:23:03 +0200 |
commit | cce210f6768ab9960248f07d2b203dfae660daac (patch) | |
tree | 40f6a2c0a445216ae797c0c15dd427c7dee6a358 /src | |
parent | a8e493122e436b3202b266db23e200e764bdabc5 (diff) | |
download | minetest-cce210f6768ab9960248f07d2b203dfae660daac.tar.gz minetest-cce210f6768ab9960248f07d2b203dfae660daac.tar.bz2 minetest-cce210f6768ab9960248f07d2b203dfae660daac.zip |
Locale dir should be parallel to global data dir
Diffstat (limited to 'src')
-rw-r--r-- | src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index 0001d33ec..bcca60d95 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1132,7 +1132,7 @@ int main(int argc, char *argv[]) // Create user data directory
fs::CreateDir(porting::path_userdata);
- init_gettext((porting::path_userdata+"/locale").c_str());
+ init_gettext((porting::path_data+"/../locale").c_str());
// Initialize debug streams
#ifdef RUN_IN_PLACE
|