summaryrefslogtreecommitdiffstats
path: root/src/core/loader/ncch.h
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.h
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 '')
-rw-r--r--src/core/loader/ncch.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/core/loader/ncch.h b/src/core/loader/ncch.h
index 4ef95b5c6..269fe4f49 100644
--- a/src/core/loader/ncch.h
+++ b/src/core/loader/ncch.h
@@ -179,9 +179,10 @@ public:
/**
* Loads the Exheader and returns the system mode for this application.
- * @return Optional with the kernel system mode
+ * @param boost::optional<u32> Reference to Boost optional to store system mode.
+ * @return Result of operation.
*/
- boost::optional<u32> LoadKernelSystemMode() override;
+ ResultStatus LoadKernelSystemMode(boost::optional<u32>& system_mode) override;
ResultStatus ReadCode(std::vector<u8>& buffer) override;