From 255cd235a3f7a5520f7a4d44fbaefba254b8f2c0 Mon Sep 17 00:00:00 2001 From: Simon Clitherow Date: Tue, 20 Apr 2004 19:12:48 +0000 Subject: - 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 /Blender Foundation/Blender for the sake of correctness :) --- source/blender/ftfont/intern/FTF_TTFont.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'source/blender/ftfont') 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__ -- cgit v1.2.3