summaryrefslogtreecommitdiff
path: root/src/core/cpu_manager.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/cpu_manager.h')
-rw-r--r--src/core/cpu_manager.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/core/cpu_manager.h b/src/core/cpu_manager.h
index ae55d6427..35929ed94 100644
--- a/src/core/cpu_manager.h
+++ b/src/core/cpu_manager.h
@@ -16,10 +16,6 @@ class Event;
16class Fiber; 16class Fiber;
17} // namespace Common 17} // namespace Common
18 18
19namespace Core::Frontend {
20class EmuWindow;
21} // namespace Core::Frontend
22
23namespace Core { 19namespace Core {
24 20
25class System; 21class System;
@@ -61,8 +57,6 @@ public:
61 return current_core.load(); 57 return current_core.load();
62 } 58 }
63 59
64 void SetRenderWindow(Core::Frontend::EmuWindow& render_window);
65
66private: 60private:
67 static void GuestThreadFunction(void* cpu_manager); 61 static void GuestThreadFunction(void* cpu_manager);
68 static void GuestRewindFunction(void* cpu_manager); 62 static void GuestRewindFunction(void* cpu_manager);
@@ -106,7 +100,6 @@ private:
106 std::size_t preemption_count{}; 100 std::size_t preemption_count{};
107 std::size_t idle_count{}; 101 std::size_t idle_count{};
108 static constexpr std::size_t max_cycle_runs = 5; 102 static constexpr std::size_t max_cycle_runs = 5;
109 Core::Frontend::EmuWindow* render_window;
110 103
111 System& system; 104 System& system;
112}; 105};