Don't warn for umd0: and ms0:, not problems.

This commit is contained in:
Unknown W. Brackets 2013-08-17 17:20:00 -07:00
parent 1ee99f88e1
commit 25c07aa945

View File

@ -81,8 +81,7 @@ static bool RealPath(const std::string &currentDirectory, const std::string &inP
size_t inColon = inPath.find(':');
if (inColon + 1 == inLen)
{
WARN_LOG(HLE, "RealPath: inPath is all prefix and no path: \"%s\"", inPath.c_str());
// There's nothing after the colon, e.g. umd0: - this is perfectly valid.
outPath = inPath;
return true;
}