make FileUtilsWin32::getWritablePath() return value unified whether release or debug

This commit is contained in:
samuele3hu 2014-03-18 10:51:07 +08:00
parent 402b6f0f28
commit 76abe8d1c9
1 changed files with 1 additions and 1 deletions

View File

@ -293,7 +293,7 @@ string FileUtilsWin32::getWritablePath() const
// Create directory
if (SUCCEEDED(SHCreateDirectoryExA(NULL, ret.c_str(), NULL)))
{
return ret;
return convertPathFormatToUnixStyle(ret);
}
}
}