diff options
| author | 2015-05-14 16:39:56 -0400 | |
|---|---|---|
| committer | 2015-05-14 16:39:56 -0400 | |
| commit | 9f503387dc2d1c697fe732264cc2b1a1513a3541 (patch) | |
| tree | 38bab1172022380b259d4ccc4109860afca2775e /src/core/hle/kernel/thread.cpp | |
| parent | Merge pull request #768 from linkmauve/axe-math_utils (diff) | |
| parent | thread: Fix a conditional check in Reschedule (diff) | |
| download | yuzu-9f503387dc2d1c697fe732264cc2b1a1513a3541.tar.gz yuzu-9f503387dc2d1c697fe732264cc2b1a1513a3541.tar.xz yuzu-9f503387dc2d1c697fe732264cc2b1a1513a3541.zip | |
Merge pull request #769 from lioncash/cond
thread: Fix a conditional check in Reschedule
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 | ||