summaryrefslogtreecommitdiffstats
path: root/src/core/loader/loader.cpp
diff options
context:
space:
mode:
authorZach Hilman <zachhilman@gmail.com>2018-08-16 23:02:50 +0200
committerZach Hilman <zachhilman@gmail.com>2018-08-23 17:52:44 +0200
commitb247e0cab0e01476d8bf56e989d34483782b7cae (patch)
tree409c86c7601040adc299b2a19ca9232793597447 /src/core/loader/loader.cpp
parentnax: Add AppLoader_NAX and update loader to support it (diff)
downloadyuzu-b247e0cab0e01476d8bf56e989d34483782b7cae.tar
yuzu-b247e0cab0e01476d8bf56e989d34483782b7cae.tar.gz
yuzu-b247e0cab0e01476d8bf56e989d34483782b7cae.tar.bz2
yuzu-b247e0cab0e01476d8bf56e989d34483782b7cae.tar.lz
yuzu-b247e0cab0e01476d8bf56e989d34483782b7cae.tar.xz
yuzu-b247e0cab0e01476d8bf56e989d34483782b7cae.tar.zst
yuzu-b247e0cab0e01476d8bf56e989d34483782b7cae.zip
Diffstat (limited to 'src/core/loader/loader.cpp')
-rw-r--r--src/core/loader/loader.cpp15
1 files changed, 14 insertions, 1 deletions
diff --git a/src/core/loader/loader.cpp b/src/core/loader/loader.cpp
index fe5d71f68..c13fb49b8 100644
--- a/src/core/loader/loader.cpp
+++ b/src/core/loader/loader.cpp
@@ -87,7 +87,7 @@ std::string GetFileTypeString(FileType type) {
return "unknown";
}
-constexpr std::array<const char*, 36> RESULT_MESSAGES{
+constexpr std::array<const char*, 49> RESULT_MESSAGES{
"The operation completed successfully.",
"The loader requested to load is already loaded.",
"The operation is not implemented.",
@@ -124,6 +124,19 @@ constexpr std::array<const char*, 36> RESULT_MESSAGES{
"There was a general error loading the NRO into emulated memory.",
"There is no icon available.",
"There is no control data available.",
+ "The NAX file has a bad header.",
+ "The NAX file has incorrect size as determined by the header.",
+ "The HMAC to generated the NAX decryption keys failed.",
+ "The HMAC to validate the NAX decryption keys failed.",
+ "The NAX key derivation failed.",
+ "The NAX file cannot be interpreted as an NCA file.",
+ "The NAX file has an incorrect path.",
+ "The SD seed could not be found or derived.",
+ "The SD KEK Source could not be found.",
+ "The AES KEK Generation Source could not be found.",
+ "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.",
};
std::ostream& operator<<(std::ostream& os, ResultStatus status) {