summaryrefslogtreecommitdiffstats
path: root/src/core/core.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-08-02 16:19:15 +0200
committerLioncash <mathew1800@gmail.com>2018-08-02 16:23:10 +0200
commitc6db1c390b748646d77f38f92529f706eaa6b6ae (patch)
treef3463db5bea2ca134cc4a57215430d7969fb7205 /src/core/core.cpp
parentMerge pull request #896 from lioncash/audio-out (diff)
downloadyuzu-c6db1c390b748646d77f38f92529f706eaa6b6ae.tar
yuzu-c6db1c390b748646d77f38f92529f706eaa6b6ae.tar.gz
yuzu-c6db1c390b748646d77f38f92529f706eaa6b6ae.tar.bz2
yuzu-c6db1c390b748646d77f38f92529f706eaa6b6ae.tar.lz
yuzu-c6db1c390b748646d77f38f92529f706eaa6b6ae.tar.xz
yuzu-c6db1c390b748646d77f38f92529f706eaa6b6ae.tar.zst
yuzu-c6db1c390b748646d77f38f92529f706eaa6b6ae.zip
Diffstat (limited to '')
-rw-r--r--src/core/core.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/core/core.cpp b/src/core/core.cpp
index b7f4b4532..dd845a78a 100644
--- a/src/core/core.cpp
+++ b/src/core/core.cpp
@@ -15,7 +15,6 @@
#include "core/hle/service/service.h"
#include "core/hle/service/sm/controller.h"
#include "core/hle/service/sm/sm.h"
-#include "core/hw/hw.h"
#include "core/loader/loader.h"
#include "core/memory_setup.h"
#include "core/settings.h"
@@ -180,7 +179,6 @@ System::ResultStatus System::Init(EmuWindow* emu_window, u32 system_mode) {
telemetry_session = std::make_unique<Core::TelemetrySession>();
service_manager = std::make_shared<Service::SM::ServiceManager>();
- HW::Init();
Kernel::Init(system_mode);
Service::Init(service_manager);
GDBStub::Init();
@@ -224,7 +222,6 @@ void System::Shutdown() {
GDBStub::Shutdown();
Service::Shutdown();
Kernel::Shutdown();
- HW::Shutdown();
service_manager.reset();
telemetry_session.reset();
gpu_core.reset();