Assorted cleanup

This commit is contained in:
Henrik Rydgard 2016-03-09 17:02:53 +01:00
parent 14ead27f8d
commit b94572e3ba
3 changed files with 4 additions and 3 deletions

View File

@ -113,7 +113,7 @@ static bool RealPath(const std::string &currentDirectory, const std::string &inP
}
if (curDirColon + 1 == curDirLen)
{
ERROR_LOG(FILESYS, "RealPath: inPath \"%s\" is relative, but current directory \"%s\" is all prefix and no path. Using \"/\" as path for current directory.", inPath.c_str(), currentDirectory.c_str());
WARN_LOG(FILESYS, "RealPath: inPath \"%s\" is relative, but current directory \"%s\" is all prefix and no path. Using \"/\" as path for current directory.", inPath.c_str(), currentDirectory.c_str());
}
else
{

View File

@ -220,7 +220,9 @@ void CPU_Init() {
InitMemoryForGamePBP(loadedFile);
break;
case FILETYPE_PSP_PBP_DIRECTORY:
ERROR_LOG(LOADER, "PBP directory resolution failed.");
// This is normal for homebrew.
// ERROR_LOG(LOADER, "PBP directory resolution failed.");
break;
default:
break;
}

View File

@ -8,7 +8,6 @@
// If compiling with MFC, you might want to add #include "StdAfx.h"
#define _CRT_SECURE_NO_WARNINGS
#include "sha1.h"
#ifdef SHA1_UTILITY_FUNCTIONS