summaryrefslogtreecommitdiff
path: root/src/shared
diff options
context:
space:
mode:
authorTannin <devnull@localhost>2014-08-25 20:12:25 +0200
committerTannin <devnull@localhost>2014-08-25 20:12:25 +0200
commit84598cbcbf08862fe02300bf3945b194df12ddfa (patch)
tree60d1e02575cfa5204470b9f9c00d80ba156604c6 /src/shared
parent02973be652a4fd1f161d62ff60509eed639f8d6a (diff)
- processes spawned from MO are now themselves allowed to break away from the job.
Without this the CEF (chromium embedded framework) seems to fail - bugfix: Fixed an error message when installing a fomod wrapped in an archive - bugfix: sorting plugins had no effect on non-skyrim games - bugfix: fomod parser quit installing filelists after one file - bugfix: function retrieving local appdata path read wrong directory
Diffstat (limited to 'src/shared')
-rw-r--r--src/shared/gameinfo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/gameinfo.cpp b/src/shared/gameinfo.cpp
index f1b72cfb..21e9a586 100644
--- a/src/shared/gameinfo.cpp
+++ b/src/shared/gameinfo.cpp
@@ -221,7 +221,7 @@ std::wstring GameInfo::getLocalAppFolder() const
wchar_t localAppFolder[MAX_PATH];
memset(localAppFolder, '\0', MAX_PATH);
- if (::SHGetFolderPathW(NULL, CSIDL_PERSONAL, NULL, SHGFP_TYPE_CURRENT, localAppFolder) == S_OK) {
+ if (::SHGetFolderPathW(NULL, CSIDL_LOCAL_APPDATA, NULL, SHGFP_TYPE_CURRENT, localAppFolder) == S_OK) {
return localAppFolder;
} else {
// fallback: try the registry