mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
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:
parent
fe04ff95b8
commit
7ddf344bc1
1 changed files with 4 additions and 4 deletions
|
@ -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) )
|
||||
|
|
Loading…
Add table
Reference in a new issue