summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/svc.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-09-17 15:56:48 +0200
committerGitHub <noreply@github.com>2018-09-17 15:56:48 +0200
commite561afdcd5526c1df70cfb9c83874e1732d8a519 (patch)
treec795367bd611aec028f056ff74d7d5c2447f522a /src/core/hle/kernel/svc.cpp
parentMerge pull request #1327 from FearlessTobi/port-4171 (diff)
parentPort # #4192 from Citra: "svc: change unknown to thread in CreateThread" (diff)
downloadyuzu-e561afdcd5526c1df70cfb9c83874e1732d8a519.tar
yuzu-e561afdcd5526c1df70cfb9c83874e1732d8a519.tar.gz
yuzu-e561afdcd5526c1df70cfb9c83874e1732d8a519.tar.bz2
yuzu-e561afdcd5526c1df70cfb9c83874e1732d8a519.tar.lz
yuzu-e561afdcd5526c1df70cfb9c83874e1732d8a519.tar.xz
yuzu-e561afdcd5526c1df70cfb9c83874e1732d8a519.tar.zst
yuzu-e561afdcd5526c1df70cfb9c83874e1732d8a519.zip
Diffstat (limited to 'src/core/hle/kernel/svc.cpp')
-rw-r--r--src/core/hle/kernel/svc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/svc.cpp b/src/core/hle/kernel/svc.cpp
index a5aaa089d..3c526304f 100644
--- a/src/core/hle/kernel/svc.cpp
+++ b/src/core/hle/kernel/svc.cpp
@@ -524,7 +524,7 @@ static void ExitProcess() {
/// Creates a new thread
static ResultCode CreateThread(Handle* out_handle, VAddr entry_point, u64 arg, VAddr stack_top,
u32 priority, s32 processor_id) {
- std::string name = fmt::format("unknown-{:X}", entry_point);
+ std::string name = fmt::format("thread-{:X}", entry_point);
if (priority > THREADPRIO_LOWEST) {
return ERR_INVALID_THREAD_PRIORITY;