summaryrefslogtreecommitdiffstats
path: root/src/core/loader/loader.cpp
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2023-09-06 07:06:03 +0200
committerLiam <byteslice@airmail.cc>2023-09-06 22:49:27 +0200
commit716e0a126a22cfdeeaad6204f236324429345d2e (patch)
tree52765c887393b85518ab99f27a07e6da12ad1e3d /src/core/loader/loader.cpp
parentcore: Add support for loading NSPs with personalized tickets. (#10048) (diff)
downloadyuzu-716e0a126a22cfdeeaad6204f236324429345d2e.tar
yuzu-716e0a126a22cfdeeaad6204f236324429345d2e.tar.gz
yuzu-716e0a126a22cfdeeaad6204f236324429345d2e.tar.bz2
yuzu-716e0a126a22cfdeeaad6204f236324429345d2e.tar.lz
yuzu-716e0a126a22cfdeeaad6204f236324429345d2e.tar.xz
yuzu-716e0a126a22cfdeeaad6204f236324429345d2e.tar.zst
yuzu-716e0a126a22cfdeeaad6204f236324429345d2e.zip
Diffstat (limited to 'src/core/loader/loader.cpp')
-rw-r--r--src/core/loader/loader.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/core/loader/loader.cpp b/src/core/loader/loader.cpp
index 07c65dc1a..b6e355622 100644
--- a/src/core/loader/loader.cpp
+++ b/src/core/loader/loader.cpp
@@ -108,7 +108,7 @@ std::string GetFileTypeString(FileType type) {
return "unknown";
}
-constexpr std::array<const char*, 66> RESULT_MESSAGES{
+constexpr std::array<const char*, 68> RESULT_MESSAGES{
"The operation completed successfully.",
"The loader requested to load is already loaded.",
"The operation is not implemented.",
@@ -175,6 +175,8 @@ constexpr std::array<const char*, 66> RESULT_MESSAGES{
"The KIP BLZ decompression of the section failed unexpectedly.",
"The INI file has a bad header.",
"The INI file contains more than the maximum allowable number of KIP files.",
+ "Integrity verification could not be performed for this file.",
+ "Integrity verification failed.",
};
std::string GetResultStatusString(ResultStatus status) {