summaryrefslogtreecommitdiffstats
path: root/src/core/core.cpp
diff options
context:
space:
mode:
authorJames Rowe <jroweboy@gmail.com>2018-01-12 04:33:56 +0100
committerJames Rowe <jroweboy@gmail.com>2018-01-13 03:11:04 +0100
commit389979018cce654b1ade0161abfc627832afe592 (patch)
tree90536049d982e4f5ee1df984b1d9da52db704e95 /src/core/core.cpp
parentRemove references to PICA and rasterizers in video_core (diff)
downloadyuzu-389979018cce654b1ade0161abfc627832afe592.tar
yuzu-389979018cce654b1ade0161abfc627832afe592.tar.gz
yuzu-389979018cce654b1ade0161abfc627832afe592.tar.bz2
yuzu-389979018cce654b1ade0161abfc627832afe592.tar.lz
yuzu-389979018cce654b1ade0161abfc627832afe592.tar.xz
yuzu-389979018cce654b1ade0161abfc627832afe592.tar.zst
yuzu-389979018cce654b1ade0161abfc627832afe592.zip
Diffstat (limited to 'src/core/core.cpp')
-rw-r--r--src/core/core.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/core/core.cpp b/src/core/core.cpp
index e5f299f26..ae1eb2430 100644
--- a/src/core/core.cpp
+++ b/src/core/core.cpp
@@ -4,7 +4,6 @@
#include <memory>
#include <utility>
-#include "audio_core/audio_core.h"
#include "common/logging/log.h"
#include "core/arm/dynarmic/arm_dynarmic.h"
#include "core/arm/unicorn/arm_unicorn.h"
@@ -19,7 +18,6 @@
#include "core/loader/loader.h"
#include "core/memory_setup.h"
#include "core/settings.h"
-#include "network/network.h"
#include "video_core/video_core.h"
namespace Core {
@@ -156,7 +154,6 @@ System::ResultStatus System::Init(EmuWindow* emu_window, u32 system_mode) {
HW::Init();
Kernel::Init(system_mode);
Service::Init();
- AudioCore::Init();
GDBStub::Init();
if (!VideoCore::Init(emu_window)) {
@@ -184,7 +181,6 @@ void System::Shutdown() {
// Shutdown emulation session
GDBStub::Shutdown();
- AudioCore::Shutdown();
VideoCore::Shutdown();
Service::Shutdown();
Kernel::Shutdown();
@@ -193,10 +189,6 @@ void System::Shutdown() {
cpu_core = nullptr;
app_loader = nullptr;
telemetry_session = nullptr;
- if (auto room_member = Network::GetRoomMember().lock()) {
- Network::GameInfo game_info{};
- room_member->SendGameInfo(game_info);
- }
LOG_DEBUG(Core, "Shutdown OK");
}