summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Lioncash2015-01-30 11:33:20 -0500
committerGravatar Lioncash2015-01-30 11:34:05 -0500
commit0c4685ca12b091220f62f800474fd25a2a39d1ad (patch)
tree4d1a5ccf5afa0f2e1430fd0eb701fb06187bb733
parentarchive: Fix initializer list order for the File class. (diff)
downloadyuzu-0c4685ca12b091220f62f800474fd25a2a39d1ad.tar.gz
yuzu-0c4685ca12b091220f62f800474fd25a2a39d1ad.tar.xz
yuzu-0c4685ca12b091220f62f800474fd25a2a39d1ad.zip
loader: Add missing printf argument
-rw-r--r--src/core/loader/loader.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/loader/loader.cpp b/src/core/loader/loader.cpp
index 60460292d..52730a7b4 100644
--- a/src/core/loader/loader.cpp
+++ b/src/core/loader/loader.cpp
@@ -150,7 +150,7 @@ ResultStatus LoadFile(const std::string& filename) {
150 // IdentifyFile could know identify file type... 150 // IdentifyFile could know identify file type...
151 case FileType::Unknown: 151 case FileType::Unknown:
152 { 152 {
153 LOG_CRITICAL(Loader, "File %s is of unknown type."); 153 LOG_CRITICAL(Loader, "File %s is of unknown type.", filename.c_str());
154 return ResultStatus::ErrorInvalidFormat; 154 return ResultStatus::ErrorInvalidFormat;
155 } 155 }
156 } 156 }