diff options
Diffstat (limited to 'src/core/loader')
| -rw-r--r-- | src/core/loader/loader.h | 4 | ||||
| -rw-r--r-- | src/core/loader/ncch.h | 2 |
2 files changed, 2 insertions, 4 deletions
diff --git a/src/core/loader/loader.h b/src/core/loader/loader.h index 0a2d4a10e..adb3ffdcf 100644 --- a/src/core/loader/loader.h +++ b/src/core/loader/loader.h | |||
| @@ -10,9 +10,7 @@ | |||
| 10 | #include <string> | 10 | #include <string> |
| 11 | #include <utility> | 11 | #include <utility> |
| 12 | #include <vector> | 12 | #include <vector> |
| 13 | |||
| 14 | #include <boost/optional.hpp> | 13 | #include <boost/optional.hpp> |
| 15 | |||
| 16 | #include "common/common_types.h" | 14 | #include "common/common_types.h" |
| 17 | #include "common/file_util.h" | 15 | #include "common/file_util.h" |
| 18 | 16 | ||
| @@ -103,7 +101,7 @@ public: | |||
| 103 | * Loads the system mode that this application needs. | 101 | * Loads the system mode that this application needs. |
| 104 | * This function defaults to 2 (96MB allocated to the application) if it can't read the | 102 | * This function defaults to 2 (96MB allocated to the application) if it can't read the |
| 105 | * information. | 103 | * information. |
| 106 | * @return A pair with the system mode (If found) and the result. | 104 | * @returns a pair of Optional with the kernel system mode and ResultStatus. |
| 107 | */ | 105 | */ |
| 108 | virtual std::pair<boost::optional<u32>, ResultStatus> LoadKernelSystemMode() { | 106 | virtual std::pair<boost::optional<u32>, ResultStatus> LoadKernelSystemMode() { |
| 109 | // 96MB allocated to the application. | 107 | // 96MB allocated to the application. |
diff --git a/src/core/loader/ncch.h b/src/core/loader/ncch.h index 712d496a4..507da7550 100644 --- a/src/core/loader/ncch.h +++ b/src/core/loader/ncch.h | |||
| @@ -179,7 +179,7 @@ public: | |||
| 179 | 179 | ||
| 180 | /** | 180 | /** |
| 181 | * Loads the Exheader and returns the system mode for this application. | 181 | * Loads the Exheader and returns the system mode for this application. |
| 182 | * @return A pair with the system mode (If found) and the result. | 182 | * @returns a pair of Optional with the kernel system mode and ResultStatus |
| 183 | */ | 183 | */ |
| 184 | std::pair<boost::optional<u32>, ResultStatus> LoadKernelSystemMode() override; | 184 | std::pair<boost::optional<u32>, ResultStatus> LoadKernelSystemMode() override; |
| 185 | 185 | ||