diff options
author | Fernando Sahmkow <fsahmkow27@gmail.com> | 2020-01-26 19:32:50 +0100 |
---|---|---|
committer | Fernando Sahmkow <fsahmkow27@gmail.com> | 2020-01-26 19:32:50 +0100 |
commit | de4b01f75df19c1674a2b4424b4f0d8060829844 (patch) | |
tree | 689e812a14f928ddbd7b07dc26949ddea4938806 /src | |
parent | Kernel: Remove a few global instances from the kernel. (diff) | |
download | yuzu-de4b01f75df19c1674a2b4424b4f0d8060829844.tar yuzu-de4b01f75df19c1674a2b4424b4f0d8060829844.tar.gz yuzu-de4b01f75df19c1674a2b4424b4f0d8060829844.tar.bz2 yuzu-de4b01f75df19c1674a2b4424b4f0d8060829844.tar.lz yuzu-de4b01f75df19c1674a2b4424b4f0d8060829844.tar.xz yuzu-de4b01f75df19c1674a2b4424b4f0d8060829844.tar.zst yuzu-de4b01f75df19c1674a2b4424b4f0d8060829844.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/core/core.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/core.cpp b/src/core/core.cpp index bfe952515..c2295f69c 100644 --- a/src/core/core.cpp +++ b/src/core/core.cpp @@ -415,7 +415,7 @@ bool System::IsPoweredOn() const { } void System::PrepareReschedule() { - CurrentCoreManager().PrepareReschedule(); + impl->CurrentPhysicalCore().Stop(); } void System::PrepareReschedule(const u32 core_index) { |