summaryrefslogtreecommitdiffstats
path: root/src/core/loader/ncch.cpp
diff options
context:
space:
mode:
authorTheKoopaKingdom <thekoopakingdom@gmail.com>2017-03-08 22:23:28 +0100
committerTheKoopaKingdom <thekoopakingdom@gmail.com>2017-06-03 00:25:32 +0200
commite523c76cc8652dca4862bed2209cbf56ffbc06c2 (patch)
tree313d51420996b7618133915ddb90385636a2f4bf /src/core/loader/ncch.cpp
parentMerge pull request #2722 from wwylele/cam-ipc-helper (diff)
downloadyuzu-e523c76cc8652dca4862bed2209cbf56ffbc06c2.tar
yuzu-e523c76cc8652dca4862bed2209cbf56ffbc06c2.tar.gz
yuzu-e523c76cc8652dca4862bed2209cbf56ffbc06c2.tar.bz2
yuzu-e523c76cc8652dca4862bed2209cbf56ffbc06c2.tar.lz
yuzu-e523c76cc8652dca4862bed2209cbf56ffbc06c2.tar.xz
yuzu-e523c76cc8652dca4862bed2209cbf56ffbc06c2.tar.zst
yuzu-e523c76cc8652dca4862bed2209cbf56ffbc06c2.zip
Diffstat (limited to 'src/core/loader/ncch.cpp')
-rw-r--r--src/core/loader/ncch.cpp15
1 files changed, 11 insertions, 4 deletions
diff --git a/src/core/loader/ncch.cpp b/src/core/loader/ncch.cpp
index beeb13ffa..1a20762e4 100644
--- a/src/core/loader/ncch.cpp
+++ b/src/core/loader/ncch.cpp
@@ -121,12 +121,19 @@ FileType AppLoader_NCCH::IdentifyType(FileUtil::IOFile& file) {
return FileType::Error;
}
-boost::optional<u32> AppLoader_NCCH::LoadKernelSystemMode() {
+ResultStatus AppLoader_NCCH::LoadKernelSystemMode(boost::optional<u32>& system_mode) {
if (!is_loaded) {
- if (LoadExeFS() != ResultStatus::Success)
- return boost::none;
+ ResultStatus res = LoadExeFS();
+ if (res != ResultStatus::Success) {
+ // Set the system mode as invalid.
+ system_mode = boost::none;
+ // Return the error code.
+ return res;
+ }
}
- return exheader_header.arm11_system_local_caps.system_mode.Value();
+ // Set the system mode as the one from the exheader.
+ system_mode = exheader_header.arm11_system_local_caps.system_mode.Value();
+ return ResultStatus::Success;
}
ResultStatus AppLoader_NCCH::LoadExec() {