summaryrefslogtreecommitdiff
path: root/Source/Core/Common
diff options
context:
space:
mode:
authornakeee <nakeee@gmail.com>2008-09-05 15:22:25 +0000
committernakeee <nakeee@gmail.com>2008-09-05 15:22:25 +0000
commitf6298b9f31d78d5b0077459d596334f2b00a3c8f (patch)
tree64ec2c8f8b2f1e14a6fe60184c008d856ac94013 /Source/Core/Common
parent3749fb510bde475ecca768d8597776bcfcce6c08 (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.cpp3
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)