summaryrefslogtreecommitdiffstats
path: root/src/core/loader/loader.cpp
diff options
context:
space:
mode:
authorZach Hilman <zachhilman@gmail.com>2018-09-04 23:01:40 +0200
committerZach Hilman <zachhilman@gmail.com>2018-09-04 23:01:54 +0200
commitc913136eb215699f9c8d51a8fd56490b9df7657f (patch)
tree4564a416d8f200b69559164e2a50bdc690d49dbd /src/core/loader/loader.cpp
parentdrd: Parse title ID from program metadata (diff)
downloadyuzu-c913136eb215699f9c8d51a8fd56490b9df7657f.tar
yuzu-c913136eb215699f9c8d51a8fd56490b9df7657f.tar.gz
yuzu-c913136eb215699f9c8d51a8fd56490b9df7657f.tar.bz2
yuzu-c913136eb215699f9c8d51a8fd56490b9df7657f.tar.lz
yuzu-c913136eb215699f9c8d51a8fd56490b9df7657f.tar.xz
yuzu-c913136eb215699f9c8d51a8fd56490b9df7657f.tar.zst
yuzu-c913136eb215699f9c8d51a8fd56490b9df7657f.zip
Diffstat (limited to 'src/core/loader/loader.cpp')
-rw-r--r--src/core/loader/loader.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/loader/loader.cpp b/src/core/loader/loader.cpp
index 729b1ca08..fa43a2650 100644
--- a/src/core/loader/loader.cpp
+++ b/src/core/loader/loader.cpp
@@ -93,7 +93,7 @@ std::string GetFileTypeString(FileType type) {
return "unknown";
}
-constexpr std::array<const char*, 57> RESULT_MESSAGES{
+constexpr std::array<const char*, 58> RESULT_MESSAGES{
"The operation completed successfully.",
"The loader requested to load is already loaded.",
"The operation is not implemented.",
@@ -143,7 +143,7 @@ constexpr std::array<const char*, 57> RESULT_MESSAGES{
"The AES Key Generation Source could not be found.",
"The SD Save Key Source could not be found.",
"The SD NCA Key Source could not be found.",
- "The NSP file is missing a Program-type NCA."};
+ "The NSP file is missing a Program-type NCA.",
"The BKTR-type NCA has a bad BKTR header.",
"The BKTR Subsection entry is not located immediately after the Relocation entry.",
"The BKTR Subsection entry is not at the end of the media block.",