summaryrefslogtreecommitdiff
path: root/src/core/system.cpp
diff options
context:
space:
mode:
authorGravatar bunnei2015-05-04 18:18:08 -0400
committerGravatar bunnei2015-05-04 18:18:08 -0400
commit9cdfe5d864dcd6a45704fb76d20fe0a8929eabcc (patch)
tree7db02b0288c9dc911b8008489fe883889204d1b7 /src/core/system.cpp
parentMerge pull request #709 from linkmauve/rename-submodules (diff)
parentCore: Remove some unused functions and types (diff)
downloadyuzu-9cdfe5d864dcd6a45704fb76d20fe0a8929eabcc.tar.gz
yuzu-9cdfe5d864dcd6a45704fb76d20fe0a8929eabcc.tar.xz
yuzu-9cdfe5d864dcd6a45704fb76d20fe0a8929eabcc.zip
Merge pull request #719 from yuriks/unused-stuff
Core: Remove some unused functions and types
Diffstat (limited to '')
-rw-r--r--src/core/system.cpp12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/core/system.cpp b/src/core/system.cpp
index f4c2df1cd..561ff82f0 100644
--- a/src/core/system.cpp
+++ b/src/core/system.cpp
@@ -14,11 +14,6 @@
14 14
15namespace System { 15namespace System {
16 16
17volatile State g_state;
18
19void UpdateState(State state) {
20}
21
22void Init(EmuWindow* emu_window) { 17void Init(EmuWindow* emu_window) {
23 Core::Init(); 18 Core::Init();
24 CoreTiming::Init(); 19 CoreTiming::Init();
@@ -29,13 +24,6 @@ void Init(EmuWindow* emu_window) {
29 VideoCore::Init(emu_window); 24 VideoCore::Init(emu_window);
30} 25}
31 26
32void RunLoopFor(int cycles) {
33 RunLoopUntil(CoreTiming::GetTicks() + cycles);
34}
35
36void RunLoopUntil(u64 global_cycles) {
37}
38
39void Shutdown() { 27void Shutdown() {
40 VideoCore::Shutdown(); 28 VideoCore::Shutdown();
41 HLE::Shutdown(); 29 HLE::Shutdown();