diff options
author | Thomas Winget <tewinget@gmail.com> | 2015-03-20 16:40:54 -0400 |
---|---|---|
committer | Thomas Winget <tewinget@gmail.com> | 2015-03-20 16:40:54 -0400 |
commit | 2b0583b2c6ffb5e80f7d02ea384f039bfc88363c (patch) | |
tree | eeb39d478eb0f9be5c3cf4dcbebe63d36f348bc9 /src/common/util.cpp | |
parent | DNS checkpoint loading for testnet should now be correct (diff) | |
download | monero-2b0583b2c6ffb5e80f7d02ea384f039bfc88363c.tar.xz |
Hopefully fixes build on Windows
Diffstat (limited to 'src/common/util.cpp')
-rw-r--r-- | src/common/util.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/util.cpp b/src/common/util.cpp index 907a87cee..7d39bc4f4 100644 --- a/src/common/util.cpp +++ b/src/common/util.cpp @@ -326,7 +326,7 @@ std::string get_nix_version_display_string() std::string config_folder; #ifdef WIN32 - config_folder = get_special_folder_path(CSIDL_APPDATA, true) + "/" + CRYPTONOTE_NAME; + config_folder = get_special_folder_path(CSIDL_COMMON_APPDATA, true) + "\\" + CRYPTONOTE_NAME; #else std::string pathRet; char* pszHome = getenv("HOME"); |