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
This commit is contained in:
nakeee 2008-09-05 15:22:25 +00:00
parent 3749fb510b
commit f6298b9f31
1 changed files with 2 additions and 1 deletions

View File

@ -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)