summaryrefslogtreecommitdiff
path: root/src/core/core.cpp
diff options
context:
space:
mode:
authorGravatar Fernando Sahmkow2020-04-03 11:58:43 -0400
committerGravatar Fernando Sahmkow2020-06-27 11:36:08 -0400
commitad92865497f83fe4c19cd9ab78cce9da1a8c3a6c (patch)
treef24dd8b60b23abe73931a934af33d2ed82aa7975 /src/core/core.cpp
parentCoreTiming/CycleTimer: Correct Idling. (diff)
downloadyuzu-ad92865497f83fe4c19cd9ab78cce9da1a8c3a6c.tar.gz
yuzu-ad92865497f83fe4c19cd9ab78cce9da1a8c3a6c.tar.xz
yuzu-ad92865497f83fe4c19cd9ab78cce9da1a8c3a6c.zip
General: Correct rebase, sync gpu and context management.
Diffstat (limited to 'src/core/core.cpp')
-rw-r--r--src/core/core.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/core/core.cpp b/src/core/core.cpp
index 40eea297e..3393c33eb 100644
--- a/src/core/core.cpp
+++ b/src/core/core.cpp
@@ -151,7 +151,6 @@ struct System::Impl {
151 cpu_manager.SetMulticore(is_multicore); 151 cpu_manager.SetMulticore(is_multicore);
152 cpu_manager.SetAsyncGpu(is_async_gpu); 152 cpu_manager.SetAsyncGpu(is_async_gpu);
153 core_timing.SetMulticore(is_multicore); 153 core_timing.SetMulticore(is_multicore);
154 cpu_manager.SetRenderWindow(emu_window);
155 154
156 core_timing.Initialize([&system]() { system.RegisterHostThread(); }); 155 core_timing.Initialize([&system]() { system.RegisterHostThread(); });
157 kernel.Initialize(); 156 kernel.Initialize();
@@ -435,7 +434,7 @@ bool System::IsPoweredOn() const {
435} 434}
436 435
437void System::PrepareReschedule() { 436void System::PrepareReschedule() {
438 //impl->CurrentPhysicalCore().Stop(); 437 // impl->CurrentPhysicalCore().Stop();
439} 438}
440 439
441void System::PrepareReschedule(const u32 core_index) { 440void System::PrepareReschedule(const u32 core_index) {