From 3d934292b935869202a01560252ff4f7e2140b60 Mon Sep 17 00:00:00 2001 From: Darth1701 Date: Mon, 7 Jan 2013 09:10:05 +0100 Subject: [PATCH] Update Core/Loaders.cpp --- Core/Loaders.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Core/Loaders.cpp b/Core/Loaders.cpp index fd3eabf6a9..6848902266 100644 --- a/Core/Loaders.cpp +++ b/Core/Loaders.cpp @@ -77,13 +77,13 @@ EmuFileType Identify_File(const char *filename) bool LoadFile(const char *filename, std::string *error_string) { - INFO_LOG(LOADER,"Identifying %s...",filename); + INFO_LOG(LOADER,"Identifying file..."); switch (Identify_File(filename)) { case FILETYPE_PSP_PBP: case FILETYPE_PSP_ELF: { - INFO_LOG(LOADER,"%s is an ELF!",filename); + INFO_LOG(LOADER,"File is an ELF!"); std::string path = getDir(filename); // If loading from memstick... size_t pos = path.find("/PSP/GAME/"); @@ -95,14 +95,14 @@ bool LoadFile(const char *filename, std::string *error_string) pspFileSystem.SetCurrentDirectory("disc0:/PSP_GAME/USRDIR"); return Load_PSP_ISO(filename, error_string); case FILETYPE_ERROR: - ERROR_LOG(LOADER, "Could not read %s", filename); + ERROR_LOG(LOADER, "Could not file"); *error_string = "Error reading file"; break; case FILETYPE_UNKNOWN_BIN: case FILETYPE_UNKNOWN_ELF: case FILETYPE_UNKNOWN: default: - ERROR_LOG(LOADER, "Failed to identify %s", filename); + ERROR_LOG(LOADER, "Failed to identify file"); break; } return false;