diff options
author | Lioncash <mathew1800@gmail.com> | 2018-08-15 11:38:37 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-08-15 11:52:37 +0200 |
commit | 87d8a9c98626be491e87e4b9fad84b862d8aa0c9 (patch) | |
tree | d242adb55cd5998b6f5ee20462717d6a916bb552 /src/core/file_sys | |
parent | Merge pull request #1067 from lioncash/init (diff) | |
download | yuzu-87d8a9c98626be491e87e4b9fad84b862d8aa0c9.tar yuzu-87d8a9c98626be491e87e4b9fad84b862d8aa0c9.tar.gz yuzu-87d8a9c98626be491e87e4b9fad84b862d8aa0c9.tar.bz2 yuzu-87d8a9c98626be491e87e4b9fad84b862d8aa0c9.tar.lz yuzu-87d8a9c98626be491e87e4b9fad84b862d8aa0c9.tar.xz yuzu-87d8a9c98626be491e87e4b9fad84b862d8aa0c9.tar.zst yuzu-87d8a9c98626be491e87e4b9fad84b862d8aa0c9.zip |
Diffstat (limited to 'src/core/file_sys')
-rw-r--r-- | src/core/file_sys/card_image.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/core/file_sys/card_image.cpp b/src/core/file_sys/card_image.cpp index 8e05b9d0e..060948f9e 100644 --- a/src/core/file_sys/card_image.cpp +++ b/src/core/file_sys/card_image.cpp @@ -4,11 +4,14 @@ #include <array> #include <string> -#include <core/loader/loader.h> + +#include <fmt/ostream.h> + #include "common/logging/log.h" #include "core/file_sys/card_image.h" #include "core/file_sys/partition_filesystem.h" #include "core/file_sys/vfs_offset.h" +#include "core/loader/loader.h" namespace FileSys { @@ -142,7 +145,7 @@ Loader::ResultStatus XCI::AddNCAFromPartition(XCIPartition part) { const u16 error_id = static_cast<u16>(nca->GetStatus()); LOG_CRITICAL(Loader, "Could not load NCA {}/{}, failed with error code {:04X} ({})", partition_names[static_cast<size_t>(part)], nca->GetName(), error_id, - Loader::GetMessageForResultStatus(nca->GetStatus())); + nca->GetStatus()); } } |