- Transition period for Windows... Ctrl+U now saves in

~/.blender, but we still check old locations to avoid people from
  losing settings! :)

  This does not affect any other platform.
This commit is contained in:
Simon Clitherow 2003-08-12 20:37:14 +00:00
parent 6ef8d0a0ee
commit 776374f38b

@ -416,7 +416,21 @@ void BIF_write_homefile(void)
char *err, tstr[FILE_MAXDIR+FILE_MAXFILE];
int write_flags;
/* "change-over" period for Windows - Ctrl+U now saves in ~/.blender,
but blender still checks the old locations.
To be removed at v2.4 or so! ;)
*/
#ifdef WIN32
char dir[FILE_MAXDIR+FILE_MAXFILE];
BLI_getInstallationDir(dir);
strcat(dir,"/.blender/");
BLI_make_file_string("/", tstr, dir, ".B.blend");
#else
BLI_make_file_string("/", tstr, BLI_gethome(), ".B.blend");
#endif
/* force save as regular blend file */
write_flags = G.fileflags & ~(G_FILE_COMPRESS | G_FILE_LOCK | G_FILE_SIGN);