Oops, fix a logging typo.

This commit is contained in:
Unknown W. Brackets 2013-10-06 12:16:42 -07:00
parent 92a2f2d0f0
commit f1bfbe6216

View file

@ -230,7 +230,7 @@ u32 sceUtilityUnloadModule(u32 module)
if (currentlyLoadedModules.find(module) == currentlyLoadedModules.end())
{
WARN_LOG(SCEUTILITY, "sceUtilityLoadModule(%i): not yet loaded", module);
WARN_LOG(SCEUTILITY, "sceUtilityUnloadModule(%i): not yet loaded", module);
return SCE_ERROR_MODULE_NOT_LOADED;
}
currentlyLoadedModules.erase(module);