diff options
| author | 2018-01-11 20:33:56 -0700 | |
|---|---|---|
| committer | 2018-01-12 19:11:04 -0700 | |
| commit | 389979018cce654b1ade0161abfc627832afe592 (patch) | |
| tree | 90536049d982e4f5ee1df984b1d9da52db704e95 /src/core/core.cpp | |
| parent | Remove references to PICA and rasterizers in video_core (diff) | |
| download | yuzu-389979018cce654b1ade0161abfc627832afe592.tar.gz yuzu-389979018cce654b1ade0161abfc627832afe592.tar.xz yuzu-389979018cce654b1ade0161abfc627832afe592.zip | |
Remove gpu debugger and get yuzu qt to compile
Diffstat (limited to 'src/core/core.cpp')
| -rw-r--r-- | src/core/core.cpp | 8 |
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 @@ | |||
| 4 | 4 | ||
| 5 | #include <memory> | 5 | #include <memory> |
| 6 | #include <utility> | 6 | #include <utility> |
| 7 | #include "audio_core/audio_core.h" | ||
| 8 | #include "common/logging/log.h" | 7 | #include "common/logging/log.h" |
| 9 | #include "core/arm/dynarmic/arm_dynarmic.h" | 8 | #include "core/arm/dynarmic/arm_dynarmic.h" |
| 10 | #include "core/arm/unicorn/arm_unicorn.h" | 9 | #include "core/arm/unicorn/arm_unicorn.h" |
| @@ -19,7 +18,6 @@ | |||
| 19 | #include "core/loader/loader.h" | 18 | #include "core/loader/loader.h" |
| 20 | #include "core/memory_setup.h" | 19 | #include "core/memory_setup.h" |
| 21 | #include "core/settings.h" | 20 | #include "core/settings.h" |
| 22 | #include "network/network.h" | ||
| 23 | #include "video_core/video_core.h" | 21 | #include "video_core/video_core.h" |
| 24 | 22 | ||
| 25 | namespace Core { | 23 | namespace Core { |
| @@ -156,7 +154,6 @@ System::ResultStatus System::Init(EmuWindow* emu_window, u32 system_mode) { | |||
| 156 | HW::Init(); | 154 | HW::Init(); |
| 157 | Kernel::Init(system_mode); | 155 | Kernel::Init(system_mode); |
| 158 | Service::Init(); | 156 | Service::Init(); |
| 159 | AudioCore::Init(); | ||
| 160 | GDBStub::Init(); | 157 | GDBStub::Init(); |
| 161 | 158 | ||
| 162 | if (!VideoCore::Init(emu_window)) { | 159 | if (!VideoCore::Init(emu_window)) { |
| @@ -184,7 +181,6 @@ void System::Shutdown() { | |||
| 184 | 181 | ||
| 185 | // Shutdown emulation session | 182 | // Shutdown emulation session |
| 186 | GDBStub::Shutdown(); | 183 | GDBStub::Shutdown(); |
| 187 | AudioCore::Shutdown(); | ||
| 188 | VideoCore::Shutdown(); | 184 | VideoCore::Shutdown(); |
| 189 | Service::Shutdown(); | 185 | Service::Shutdown(); |
| 190 | Kernel::Shutdown(); | 186 | Kernel::Shutdown(); |
| @@ -193,10 +189,6 @@ void System::Shutdown() { | |||
| 193 | cpu_core = nullptr; | 189 | cpu_core = nullptr; |
| 194 | app_loader = nullptr; | 190 | app_loader = nullptr; |
| 195 | telemetry_session = nullptr; | 191 | telemetry_session = nullptr; |
| 196 | if (auto room_member = Network::GetRoomMember().lock()) { | ||
| 197 | Network::GameInfo game_info{}; | ||
| 198 | room_member->SendGameInfo(game_info); | ||
| 199 | } | ||
| 200 | 192 | ||
| 201 | LOG_DEBUG(Core, "Shutdown OK"); | 193 | LOG_DEBUG(Core, "Shutdown OK"); |
| 202 | } | 194 | } |