From 3fcc92ccad1ef59c955a8532a928f5758763fe24 Mon Sep 17 00:00:00 2001 From: Shyotl Date: Mon, 23 Sep 2013 17:55:32 -0500 Subject: [PATCH] FOLDERID_LocalAppData should have been FOLDERID_RoamingAppData --- indra/llvfs/lldir_win32.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indra/llvfs/lldir_win32.cpp b/indra/llvfs/lldir_win32.cpp index 9b9e6c9cf..1289085b7 100644 --- a/indra/llvfs/lldir_win32.cpp +++ b/indra/llvfs/lldir_win32.cpp @@ -59,7 +59,7 @@ LLDir_Win32::LLDir_Win32() if(pSHGetKnownFolderPath) { WCHAR* pPath = NULL; - if((*pSHGetKnownFolderPath)(FOLDERID_LocalAppData, 0, NULL, &pPath) == S_OK) + if((*pSHGetKnownFolderPath)(FOLDERID_RoamingAppData, 0, NULL, &pPath) == S_OK) wcscpy_s(w_str,pPath); else SHGetSpecialFolderPath(NULL, w_str, CSIDL_APPDATA, TRUE);