Improve sceIo to pass io autotest.

io/io, io/cwd, io/directory ok
io/file still have a file mode fail
This commit is contained in:
Xele02
2013-01-21 01:25:48 +01:00
parent 784c191caf
commit 3825df5c6a
7 changed files with 105 additions and 43 deletions
+3 -2
View File
@@ -71,8 +71,9 @@ static bool RealPath(const std::string &currentDirectory, const std::string &inP
size_t inLen = inPath.length();
if (inLen == 0)
{
ERROR_LOG(HLE, "RealPath: inPath is empty");
return false;
WARN_LOG(HLE, "RealPath: inPath is empty");
outPath = currentDirectory;
return true;
}
size_t inColon = inPath.find(':');