summaryrefslogtreecommitdiff
path: root/src/core/loader
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2019-05-28 21:42:50 -0400
committerLioncash <mathew1800@gmail.com>2019-05-28 22:28:44 -0400
commit84a8fb9264b5018d97e487f3e473b5ebb43b48f1 (patch)
treee8870936df26b17ea3008978489ceb238fc8683a /src/core/loader
parentb1a4ab2ccc82940f9b1cbf18027ce79a3c23fede (diff)
core/loader: Remove LoadKernelSystemMode
This is a hold-over from Citra and doesn't apply to yuzu.
Diffstat (limited to 'src/core/loader')
-rw-r--r--src/core/loader/loader.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/core/loader/loader.h b/src/core/loader/loader.h
index f7846db52..869406b75 100644
--- a/src/core/loader/loader.h
+++ b/src/core/loader/loader.h
@@ -154,17 +154,6 @@ public:
virtual LoadResult Load(Kernel::Process& process) = 0;
/**
- * Loads the system mode that this application needs.
- * This function defaults to 2 (96MB allocated to the application) if it can't read the
- * information.
- * @returns A pair with the optional system mode, and and the status.
- */
- virtual std::pair<std::optional<u32>, ResultStatus> LoadKernelSystemMode() {
- // 96MB allocated to the application.
- return std::make_pair(2, ResultStatus::Success);
- }
-
- /**
* Get the code (typically .code section) of the application
* @param buffer Reference to buffer to store data
* @return ResultStatus result of function