Use content of %TEMP% also in U.temp_dir instead of /tmp/ on Windows. Internal btempdir uses that anyway, so less confusing.

This commit is contained in:
Nathan Letwory 2010-09-27 23:28:45 +00:00
parent 7c133760bb
commit 76b1a27f96
1 changed files with 1 additions and 0 deletions

View File

@ -1632,6 +1632,7 @@ void BLI_where_is_temp(char *fullname, int usertemp)
char *tmp = getenv("TEMP"); /* Windows */
if (tmp && BLI_is_dir(tmp)) {
strcpy(fullname, tmp);
strcpy(U.tempdir, fullname); /* also set user pref to show %TEMP%. /tmp/ is just plain confusing for Windows users. */
}
}
#else