diff options
Diffstat (limited to 'src/core/hle/kernel/thread.cpp')
| -rw-r--r-- | src/core/hle/kernel/thread.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/thread.cpp b/src/core/hle/kernel/thread.cpp index afaf0cd5d..5bcd03ff3 100644 --- a/src/core/hle/kernel/thread.cpp +++ b/src/core/hle/kernel/thread.cpp | |||
| @@ -495,7 +495,7 @@ void Reschedule() { | |||
| 495 | LOG_TRACE(Kernel, "context switch %u -> %u", cur->GetObjectId(), next->GetObjectId()); | 495 | LOG_TRACE(Kernel, "context switch %u -> %u", cur->GetObjectId(), next->GetObjectId()); |
| 496 | } else if (cur) { | 496 | } else if (cur) { |
| 497 | LOG_TRACE(Kernel, "context switch %u -> idle", cur->GetObjectId()); | 497 | LOG_TRACE(Kernel, "context switch %u -> idle", cur->GetObjectId()); |
| 498 | } else { | 498 | } else if (next) { |
| 499 | LOG_TRACE(Kernel, "context switch idle -> %u", next->GetObjectId()); | 499 | LOG_TRACE(Kernel, "context switch idle -> %u", next->GetObjectId()); |
| 500 | } | 500 | } |
| 501 | 501 | ||