diff options
author | bunnei <ericbunnie@gmail.com> | 2014-04-06 16:55:54 -0400 |
---|---|---|
committer | bunnei <ericbunnie@gmail.com> | 2014-04-06 16:55:54 -0400 |
commit | 551b2a52e0c36613a3ce459dcd8b2aac39de707b (patch) | |
tree | 6d6b4e9263fdebef7cfa308380bb1bafcb6faede /src | |
parent | 080f847550b028e59f5a37471e00b8a27e6f1b23 (diff) |
initialize VideoCore
Diffstat (limited to 'src')
-rw-r--r-- | src/core/src/system.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/core/src/system.cpp b/src/core/src/system.cpp index 1477bab32..7c829d609 100644 --- a/src/core/src/system.cpp +++ b/src/core/src/system.cpp @@ -27,6 +27,7 @@ #include "core_timing.h" #include "mem_map.h" #include "system.h" +#include "video_core.h" namespace System { @@ -41,6 +42,7 @@ void Init(EmuWindow* emu_window) { Memory::Init(); HW::Init(); CoreTiming::Init(); + VideoCore::Init(emu_window); } void RunLoopFor(int cycles) { @@ -53,9 +55,8 @@ void RunLoopUntil(u64 global_cycles) { void Shutdown() { Core::Shutdown(); HW::Shutdown(); + VideoCore::Shutdown(); g_ctr_file_system.Shutdown(); } - - } // namespace |