diff options
| author | nakeee <nakeee@gmail.com> | 2008-09-05 15:22:25 +0000 |
|---|---|---|
| committer | nakeee <nakeee@gmail.com> | 2008-09-05 15:22:25 +0000 |
| commit | f6298b9f31d78d5b0077459d596334f2b00a3c8f (patch) | |
| tree | 64ec2c8f8b2f1e14a6fe60184c008d856ac94013 /Source/Core/Common | |
| parent | 3749fb510bde475ecca768d8597776bcfcce6c08 (diff) | |
forgot return value on windows
can't check it though
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@445 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/Common')
| -rw-r--r-- | Source/Core/Common/Src/FileUtil.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/Core/Common/Src/FileUtil.cpp b/Source/Core/Common/Src/FileUtil.cpp index 1d79beef51..ad19778902 100644 --- a/Source/Core/Common/Src/FileUtil.cpp +++ b/Source/Core/Common/Src/FileUtil.cpp @@ -103,7 +103,8 @@ bool File::CreateDir(const std::string &path) std::string GetUserDirectory() {
#ifdef _WIN32
- //TODO #endif
+ //TODO
+ return std::string("");
#else
char *dir = getenv("HOME");
if (!dir)
|
