From 76b1a27f96ffe1ec8c5351f34bcc2b9733b4483e Mon Sep 17 00:00:00 2001 From: Nathan Letwory Date: Mon, 27 Sep 2010 23:28:45 +0000 Subject: [PATCH] Use content of %TEMP% also in U.temp_dir instead of /tmp/ on Windows. Internal btempdir uses that anyway, so less confusing. --- source/blender/blenlib/intern/path_util.c | 1 + 1 file changed, 1 insertion(+) diff --git a/source/blender/blenlib/intern/path_util.c b/source/blender/blenlib/intern/path_util.c index 384f3aa541f..ac4af561779 100644 --- a/source/blender/blenlib/intern/path_util.c +++ b/source/blender/blenlib/intern/path_util.c @@ -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