diff options
Diffstat (limited to 'src/core/hle/kernel/thread.cpp')
| -rw-r--r-- | src/core/hle/kernel/thread.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/kernel/thread.cpp b/src/core/hle/kernel/thread.cpp index 4cd57ab25..63790ea00 100644 --- a/src/core/hle/kernel/thread.cpp +++ b/src/core/hle/kernel/thread.cpp | |||
| @@ -175,11 +175,11 @@ void Thread::ResumeFromWait() { | |||
| 175 | return; | 175 | return; |
| 176 | 176 | ||
| 177 | case THREADSTATUS_RUNNING: | 177 | case THREADSTATUS_RUNNING: |
| 178 | DEBUG_ASSERT_MSG(false, "Thread with object id %u has already resumed.", GetObjectId()); | 178 | DEBUG_ASSERT_MSG(false, "Thread with object id {} has already resumed.", GetObjectId()); |
| 179 | return; | 179 | return; |
| 180 | case THREADSTATUS_DEAD: | 180 | case THREADSTATUS_DEAD: |
| 181 | // This should never happen, as threads must complete before being stopped. | 181 | // This should never happen, as threads must complete before being stopped. |
| 182 | DEBUG_ASSERT_MSG(false, "Thread with object id %u cannot be resumed because it's DEAD.", | 182 | DEBUG_ASSERT_MSG(false, "Thread with object id {} cannot be resumed because it's DEAD.", |
| 183 | GetObjectId()); | 183 | GetObjectId()); |
| 184 | return; | 184 | return; |
| 185 | } | 185 | } |