diff options
author | bunnei <bunneidev@gmail.com> | 2017-06-03 04:24:29 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-03 04:24:29 +0200 |
commit | 81449f025a190cd9f931d73cf959ddbfebff497a (patch) | |
tree | 24a15888dd6ebc515a09eaf00623fa23e2d4665d /src/core/loader/ncch.h | |
parent | Merge pull request #2722 from wwylele/cam-ipc-helper (diff) | |
parent | Addressed Bunnei's review comments, and made some other tweaks: (diff) | |
download | yuzu-81449f025a190cd9f931d73cf959ddbfebff497a.tar yuzu-81449f025a190cd9f931d73cf959ddbfebff497a.tar.gz yuzu-81449f025a190cd9f931d73cf959ddbfebff497a.tar.bz2 yuzu-81449f025a190cd9f931d73cf959ddbfebff497a.tar.lz yuzu-81449f025a190cd9f931d73cf959ddbfebff497a.tar.xz yuzu-81449f025a190cd9f931d73cf959ddbfebff497a.tar.zst yuzu-81449f025a190cd9f931d73cf959ddbfebff497a.zip |
Diffstat (limited to 'src/core/loader/ncch.h')
-rw-r--r-- | src/core/loader/ncch.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/loader/ncch.h b/src/core/loader/ncch.h index 4ef95b5c6..0ebd47fd5 100644 --- a/src/core/loader/ncch.h +++ b/src/core/loader/ncch.h @@ -179,9 +179,9 @@ public: /** * Loads the Exheader and returns the system mode for this application. - * @return Optional with the kernel system mode + * @returns A pair with the optional system mode, and and the status. */ - boost::optional<u32> LoadKernelSystemMode() override; + std::pair<boost::optional<u32>, ResultStatus> LoadKernelSystemMode() override; ResultStatus ReadCode(std::vector<u8>& buffer) override; |