summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/scheduler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/kernel/scheduler.cpp')
-rw-r--r--src/core/hle/kernel/scheduler.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/scheduler.cpp b/src/core/hle/kernel/scheduler.cpp
index dabeb05d6..e6dcb9639 100644
--- a/src/core/hle/kernel/scheduler.cpp
+++ b/src/core/hle/kernel/scheduler.cpp
@@ -414,7 +414,7 @@ u64 Scheduler::GetLastContextSwitchTicks() const {
414} 414}
415 415
416void Scheduler::TryDoContextSwitch() { 416void Scheduler::TryDoContextSwitch() {
417 if (is_context_switch_pending ) { 417 if (is_context_switch_pending) {
418 SwitchContext(); 418 SwitchContext();
419 } 419 }
420} 420}