summaryrefslogtreecommitdiff
path: root/src/core/loader/loader.h
diff options
context:
space:
mode:
authorGravatar TheKoopaKingdom2017-03-08 16:23:28 -0500
committerGravatar TheKoopaKingdom2017-06-02 18:25:32 -0400
commite523c76cc8652dca4862bed2209cbf56ffbc06c2 (patch)
tree313d51420996b7618133915ddb90385636a2f4bf /src/core/loader/loader.h
parentMerge pull request #2722 from wwylele/cam-ipc-helper (diff)
downloadyuzu-e523c76cc8652dca4862bed2209cbf56ffbc06c2.tar.gz
yuzu-e523c76cc8652dca4862bed2209cbf56ffbc06c2.tar.xz
yuzu-e523c76cc8652dca4862bed2209cbf56ffbc06c2.zip
Fixed encrypted ROM error messages.
Diffstat (limited to 'src/core/loader/loader.h')
-rw-r--r--src/core/loader/loader.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/core/loader/loader.h b/src/core/loader/loader.h
index 1d80766ae..21f73503e 100644
--- a/src/core/loader/loader.h
+++ b/src/core/loader/loader.h
@@ -100,11 +100,13 @@ public:
100 * Loads the system mode that this application needs. 100 * Loads the system mode that this application needs.
101 * This function defaults to 2 (96MB allocated to the application) if it can't read the 101 * This function defaults to 2 (96MB allocated to the application) if it can't read the
102 * information. 102 * information.
103 * @returns Optional with the kernel system mode 103 * @param boost::optional<u32> Reference to Boost optional to store system mode.
104 * @ return Result of operation.
104 */ 105 */
105 virtual boost::optional<u32> LoadKernelSystemMode() { 106 virtual ResultStatus LoadKernelSystemMode(boost::optional<u32>& system_mode) {
106 // 96MB allocated to the application. 107 // 96MB allocated to the application.
107 return 2; 108 system_mode = 2;
109 return ResultStatus::Success;
108 } 110 }
109 111
110 /** 112 /**