summaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2018-08-13 03:38:37 +0200
committerSubv <subv2112@gmail.com>2018-08-13 03:38:37 +0200
commita9877c8f65b3cefe12d8ec5da6d6acf4ea27923b (patch)
tree1f9da7896af7c3da393ee738aa7554d9ec1d8625 /src/core
parentMerge pull request #1029 from bunnei/fix-out-attrib (diff)
downloadyuzu-a9877c8f65b3cefe12d8ec5da6d6acf4ea27923b.tar
yuzu-a9877c8f65b3cefe12d8ec5da6d6acf4ea27923b.tar.gz
yuzu-a9877c8f65b3cefe12d8ec5da6d6acf4ea27923b.tar.bz2
yuzu-a9877c8f65b3cefe12d8ec5da6d6acf4ea27923b.tar.lz
yuzu-a9877c8f65b3cefe12d8ec5da6d6acf4ea27923b.tar.xz
yuzu-a9877c8f65b3cefe12d8ec5da6d6acf4ea27923b.tar.zst
yuzu-a9877c8f65b3cefe12d8ec5da6d6acf4ea27923b.zip
Diffstat (limited to 'src/core')
-rw-r--r--src/core/hle/kernel/svc.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/core/hle/kernel/svc.cpp b/src/core/hle/kernel/svc.cpp
index 5db2db687..4ca481513 100644
--- a/src/core/hle/kernel/svc.cpp
+++ b/src/core/hle/kernel/svc.cpp
@@ -532,7 +532,6 @@ static ResultCode CreateThread(Handle* out_handle, VAddr entry_point, u64 arg, V
CASCADE_RESULT(thread->guest_handle, g_handle_table.Create(thread));
*out_handle = thread->guest_handle;
- Core::System::GetInstance().PrepareReschedule();
Core::System::GetInstance().CpuCore(thread->processor_id).PrepareReschedule();
LOG_TRACE(Kernel_SVC,