summaryrefslogtreecommitdiff
path: root/src/core/core.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/core.cpp')
-rw-r--r--src/core/core.cpp12
1 files changed, 4 insertions, 8 deletions
diff --git a/src/core/core.cpp b/src/core/core.cpp
index e33ed77cd..8d65a5d91 100644
--- a/src/core/core.cpp
+++ b/src/core/core.cpp
@@ -444,6 +444,10 @@ void System::InvalidateCpuInstructionCaches() {
444 impl->kernel.InvalidateAllInstructionCaches(); 444 impl->kernel.InvalidateAllInstructionCaches();
445} 445}
446 446
447void System::Shutdown() {
448 impl->Shutdown();
449}
450
447System::ResultStatus System::Load(Frontend::EmuWindow& emu_window, const std::string& filepath) { 451System::ResultStatus System::Load(Frontend::EmuWindow& emu_window, const std::string& filepath) {
448 return impl->Load(*this, emu_window, filepath); 452 return impl->Load(*this, emu_window, filepath);
449} 453}
@@ -752,14 +756,6 @@ const System::CurrentBuildProcessID& System::GetCurrentProcessBuildID() const {
752 return impl->build_id; 756 return impl->build_id;
753} 757}
754 758
755System::ResultStatus System::Init(Frontend::EmuWindow& emu_window) {
756 return impl->Init(*this, emu_window);
757}
758
759void System::Shutdown() {
760 impl->Shutdown();
761}
762
763Service::SM::ServiceManager& System::ServiceManager() { 759Service::SM::ServiceManager& System::ServiceManager() {
764 return *impl->service_manager; 760 return *impl->service_manager;
765} 761}