From f6298b9f31d78d5b0077459d596334f2b00a3c8f Mon Sep 17 00:00:00 2001 From: nakeee Date: Fri, 5 Sep 2008 15:22:25 +0000 Subject: [PATCH] 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 --- Source/Core/Common/Src/FileUtil.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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)