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>2003-10-25 18:09:18 +0400
committerSimon Clitherow <aphex@nildram.co.uk>2003-10-25 18:09:18 +0400
commit066df297b5a3f4408fede3a014689915504f27ad (patch)
treeb9db796d25f91b7f6c3c20b254e4bef15c1945a3 /source/blender/src/usiblender.c
parent084cb3aadc22f48396c3f8d2ef817c03feeb3104 (diff)
- fixed a bug when saving user defaults (Win32 only)
(the first save didn't store paths or font settings!) This is something I broke back at 2.28a :) I'm suprised there were no bug reports on this, but it's fixed now! ;)
Diffstat (limited to 'source/blender/src/usiblender.c')
-rw-r--r--source/blender/src/usiblender.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/usiblender.c b/source/blender/src/usiblender.c
index 11283f26d0f..375d12cb7bb 100644
--- a/source/blender/src/usiblender.c
+++ b/source/blender/src/usiblender.c
@@ -420,7 +420,7 @@ void BIF_write_homefile(void)
char dir[FILE_MAXDIR+FILE_MAXFILE];
BLI_getInstallationDir(dir);
- strcat(dir,"/.blender/");
+ strcat(dir,".blender/");
BLI_make_file_string("/", tstr, dir, ".B.blend");
#else