Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Clitherow <aphex@nildram.co.uk>2004-04-20 23:12:48 +0400
committerSimon Clitherow <aphex@nildram.co.uk>2004-04-20 23:12:48 +0400
commit255cd235a3f7a5520f7a4d44fbaefba254b8f2c0 (patch)
tree9d43a44fdf7a804cba67cd31fbb96dec3265659f /source/blender/ftfont
parentd694335cc2e882cb7ef08806bc7cd07191f93d70 (diff)
- Returned multi-user support on Win2k/XP.
Now uses 'Application Data/Blender Foundation/Blender' instead of old "Not A Number" dir. - Updated windows installer to make this change transparent for the users. It copies /.blender to the new location and displays a short message to advise them of the change (http://homepages.nildram.co.uk/~aphex/installer_msg.jpg). - Installer also includes fix for opening blend files from explorer (patch provided by Valentin Ungureanu (vung) - thanks!) Note to CVS users on Win2k/XP: Although blender will continue to work without changes, you should ideally copy the /.blender dir to <app data>/Blender Foundation/Blender for the sake of correctness :)
Diffstat (limited to 'source/blender/ftfont')
-rw-r--r--source/blender/ftfont/intern/FTF_TTFont.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/source/blender/ftfont/intern/FTF_TTFont.cpp b/source/blender/ftfont/intern/FTF_TTFont.cpp
index f9fed8d2ea1..5562b9403a4 100644
--- a/source/blender/ftfont/intern/FTF_TTFont.cpp
+++ b/source/blender/ftfont/intern/FTF_TTFont.cpp
@@ -118,9 +118,7 @@ FTF_TTFont::FTF_TTFont(void)
if(BLI_exist(messagepath) == NULL) { // locale not in home dir
#ifdef WIN32
- /* message catalogs are stored in the installation dir */
- BLI_getInstallationDir(messagepath);
- strcat(messagepath, "/.blender/locale");
+ BLI_make_file_string("/", messagepath, BLI_gethome(), "/locale");
if(BLI_exist(messagepath) == NULL) {
#endif
#ifdef __APPLE__