diff options
author | Lioncash <mathew1800@gmail.com> | 2020-11-18 02:09:05 -0500 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2020-11-18 02:09:08 -0500 |
commit | aaf262bfed6eaeaf34d487059eed95e540636108 (patch) | |
tree | e85b167d6627ce4e88b8ab4992b86c2a413e16b5 /src/core/core.cpp | |
parent | bcaadac22ca8a7320a46644e8199ef333edce8e9 (diff) |
core: Remove unused private Init function for the System class
This isn't used, so it can be removed.
Diffstat (limited to 'src/core/core.cpp')
-rw-r--r-- | src/core/core.cpp | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/src/core/core.cpp b/src/core/core.cpp index e33ed77cd2..8d65a5d912 100644 --- a/src/core/core.cpp +++ b/src/core/core.cpp @@ -444,6 +444,10 @@ void System::InvalidateCpuInstructionCaches() { impl->kernel.InvalidateAllInstructionCaches(); } +void System::Shutdown() { + impl->Shutdown(); +} + System::ResultStatus System::Load(Frontend::EmuWindow& emu_window, const std::string& filepath) { return impl->Load(*this, emu_window, filepath); } @@ -752,14 +756,6 @@ const System::CurrentBuildProcessID& System::GetCurrentProcessBuildID() const { return impl->build_id; } -System::ResultStatus System::Init(Frontend::EmuWindow& emu_window) { - return impl->Init(*this, emu_window); -} - -void System::Shutdown() { - impl->Shutdown(); -} - Service::SM::ServiceManager& System::ServiceManager() { return *impl->service_manager; } |