diff options
author | Zach Hilman <DarkLordZach@users.noreply.github.com> | 2019-06-05 21:57:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-05 21:57:48 +0200 |
commit | 799302bc9d6edade951cf7746314d96d440c823c (patch) | |
tree | 0fd074d6ab32ef2b2590bdd0c21302784976d653 /src/core/loader | |
parent | Merge pull request #2545 from lioncash/timing (diff) | |
parent | core/core: Remove unnecessary includes (diff) | |
download | yuzu-799302bc9d6edade951cf7746314d96d440c823c.tar yuzu-799302bc9d6edade951cf7746314d96d440c823c.tar.gz yuzu-799302bc9d6edade951cf7746314d96d440c823c.tar.bz2 yuzu-799302bc9d6edade951cf7746314d96d440c823c.tar.lz yuzu-799302bc9d6edade951cf7746314d96d440c823c.tar.xz yuzu-799302bc9d6edade951cf7746314d96d440c823c.tar.zst yuzu-799302bc9d6edade951cf7746314d96d440c823c.zip |
Diffstat (limited to 'src/core/loader')
-rw-r--r-- | src/core/loader/loader.h | 11 |
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 |