Fix VS2010 debug builds. It was caused by my Pangya fix: I had this else statement in the wrong place.

This commit is contained in:
The Dax 2013-05-31 11:08:27 -04:00
parent fe04ff95b8
commit 7ddf344bc1

View file

@ -196,10 +196,10 @@ bool MetaFileSystem::MapFilePath(const std::string &_inpath, std::string &outpat
errorCode = SCE_KERNEL_ERROR_NOCWD;
WARN_LOG_REPORT(HLE, "Path is relative, but current directory not set for thread %i. returning 8002032C(SCE_KERNEL_ERROR_NOCWD) instead.", currentThread, startingDirectory.c_str());
}
else
{
currentDirectory = &(it->second);
}
}
else
{
currentDirectory = &(it->second);
}
if ( RealPath(*currentDirectory, inpath, realpath) )