From f3d32d8c23ab1df64a772de19e915ed9b2c5141c Mon Sep 17 00:00:00 2001 From: The Dax Date: Mon, 3 Mar 2014 11:57:33 -0500 Subject: [PATCH] Get rid of redundant ERROR_LOG. --- Core/Loaders.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Core/Loaders.cpp b/Core/Loaders.cpp index 3e35e70e5..26328b1dd 100644 --- a/Core/Loaders.cpp +++ b/Core/Loaders.cpp @@ -154,10 +154,8 @@ IdentifiedFileType Identify_File(std::string &filename) paramSFO.ReadSFO(sfoData, sfoSize); // PS1 Eboots are supposed to use "ME" as their PARAM SFO category. // If they don't, and they're still malformed (e.g. PSISOIMG0000 isn't found), there's nothing we can do. - if (paramSFO.GetValueString("CATEGORY") == "ME") { - ERROR_LOG(LOADER, "PS1 EBOOTs are not supported by PPSSPP."); + if (paramSFO.GetValueString("CATEGORY") == "ME") return FILETYPE_PSP_PS1_PBP; - } } delete[] sfoData; }