diff options
| author | John Peterson <jpeterson57@gmail.com> | 2008-12-09 05:37:15 +0000 |
|---|---|---|
| committer | John Peterson <jpeterson57@gmail.com> | 2008-12-09 05:37:15 +0000 |
| commit | fee145244c14a8617c9a3c09f7273b357e636397 (patch) | |
| tree | 6a0212bc47e102459d96751645dd51e911fc48d5 /Source/Core/Common/Src/FileUtil.cpp | |
| parent | 668337eb84971922877c7f7707077d3c469008c3 (diff) | |
Wiimote: Added optional status icons for the Wiimote speaker and leds. And a few other small changes.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1455 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/Common/Src/FileUtil.cpp')
| -rw-r--r-- | Source/Core/Common/Src/FileUtil.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Source/Core/Common/Src/FileUtil.cpp b/Source/Core/Common/Src/FileUtil.cpp index 08d6836467..22bcc152f2 100644 --- a/Source/Core/Common/Src/FileUtil.cpp +++ b/Source/Core/Common/Src/FileUtil.cpp @@ -297,7 +297,11 @@ std::string GetUserDirectory() #ifdef _WIN32 if (SUCCEEDED(SHGetFolderPath(NULL, CSIDL_COMMON_APPDATA, NULL, 0, path))) { - return std::string(path); + //return std::string(path); + + /* I dont understand this, I got "E:\Documents and Settings\All Users\Application Data" + from this */ + return std::string(""); } return std::string(""); #else |
