From 5c4da2d2188a99ae81cd0af098d8d72ecb6e287e Mon Sep 17 00:00:00 2001 From: Valentin Vanelslande Date: Sat, 8 Sep 2018 07:40:24 -0500 Subject: [PATCH] svc: change unknown to thread in CreateThread --- src/core/hle/kernel/svc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/hle/kernel/svc.cpp b/src/core/hle/kernel/svc.cpp index bfbf112ee..615b3f911 100644 --- a/src/core/hle/kernel/svc.cpp +++ b/src/core/hle/kernel/svc.cpp @@ -723,7 +723,7 @@ static ResultCode GetResourceLimitLimitValues(VAddr values, Handle resource_limi /// Creates a new thread static ResultCode CreateThread(Handle* out_handle, u32 priority, u32 entry_point, u32 arg, u32 stack_top, s32 processor_id) { - std::string name = fmt::format("unknown-{:08X}", entry_point); + std::string name = fmt::format("thread-{:08X}", entry_point); if (priority > THREADPRIO_LOWEST) { return ERR_OUT_OF_RANGE;