diff options
author | Lioncash <mathew1800@gmail.com> | 2018-10-15 03:41:58 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-10-15 23:02:11 +0200 |
commit | bed872ed38e19d34c6c2e3d1a3d35a9f72e46970 (patch) | |
tree | 6533551afe9c5432fa8789a1517a97111d0041c6 /src/core/loader/loader.cpp | |
parent | nso: Make LoadModule take a VfsFile by const reference (diff) | |
download | yuzu-bed872ed38e19d34c6c2e3d1a3d35a9f72e46970.tar yuzu-bed872ed38e19d34c6c2e3d1a3d35a9f72e46970.tar.gz yuzu-bed872ed38e19d34c6c2e3d1a3d35a9f72e46970.tar.bz2 yuzu-bed872ed38e19d34c6c2e3d1a3d35a9f72e46970.tar.lz yuzu-bed872ed38e19d34c6c2e3d1a3d35a9f72e46970.tar.xz yuzu-bed872ed38e19d34c6c2e3d1a3d35a9f72e46970.tar.zst yuzu-bed872ed38e19d34c6c2e3d1a3d35a9f72e46970.zip |
Diffstat (limited to '')
-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.", |