diff options
author | bunnei <bunneidev@gmail.com> | 2018-10-15 17:48:36 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-15 17:48:36 -0400 |
commit | 50e6205c21e398da6554b8c70b801f98035cc456 (patch) | |
tree | 4929a2300446ae6965191ac5c600a3f767468089 /src/core/loader/loader.cpp | |
parent | 76654113176b1f8759504080a6ccdfd422cd6777 (diff) | |
parent | bed872ed38e19d34c6c2e3d1a3d35a9f72e46970 (diff) |
Merge pull request #1499 from lioncash/nro
nro/nso: Minor error handling changes
Diffstat (limited to 'src/core/loader/loader.cpp')
-rw-r--r-- | src/core/loader/loader.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/loader/loader.cpp b/src/core/loader/loader.cpp index 91659ec17..9cd0b0ccd 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*, 59> RESULT_MESSAGES{ +constexpr std::array<const char*, 60> RESULT_MESSAGES{ "The operation completed successfully.", "The loader requested to load is already loaded.", "The operation is not implemented.", @@ -128,6 +128,7 @@ constexpr std::array<const char*, 59> RESULT_MESSAGES{ "The RomFS could not be found.", "The ELF file has incorrect size as determined by the header.", "There was a general error loading the NRO into emulated memory.", + "There was a general error loading the NSO into emulated memory.", "There is no icon available.", "There is no control data available.", "The NAX file has a bad header.", |