summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/thread.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-04-27 13:54:05 +0200
committerLioncash <mathew1800@gmail.com>2018-04-27 16:04:02 +0200
commit847549663090aeef89debc6213ef17b7f14e0b0e (patch)
tree899731d5c75a7b40a8aa72f5e115f86e10078745 /src/core/hle/kernel/thread.cpp
parentMerge pull request #380 from ogniK5377/service-impl (diff)
downloadyuzu-847549663090aeef89debc6213ef17b7f14e0b0e.tar
yuzu-847549663090aeef89debc6213ef17b7f14e0b0e.tar.gz
yuzu-847549663090aeef89debc6213ef17b7f14e0b0e.tar.bz2
yuzu-847549663090aeef89debc6213ef17b7f14e0b0e.tar.lz
yuzu-847549663090aeef89debc6213ef17b7f14e0b0e.tar.xz
yuzu-847549663090aeef89debc6213ef17b7f14e0b0e.tar.zst
yuzu-847549663090aeef89debc6213ef17b7f14e0b0e.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/kernel/thread.cpp4
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() {
return;
case THREADSTATUS_RUNNING:
- DEBUG_ASSERT_MSG(false, "Thread with object id %u has already resumed.", GetObjectId());
+ DEBUG_ASSERT_MSG(false, "Thread with object id {} has already resumed.", GetObjectId());
return;
case THREADSTATUS_DEAD:
// This should never happen, as threads must complete before being stopped.
- DEBUG_ASSERT_MSG(false, "Thread with object id %u cannot be resumed because it's DEAD.",
+ DEBUG_ASSERT_MSG(false, "Thread with object id {} cannot be resumed because it's DEAD.",
GetObjectId());
return;
}