Skip to content
Snippets Groups Projects
Commit 54ddb37b authored by Valentin Vanelslande's avatar Valentin Vanelslande Committed by fearlessTobi
Browse files

Port # #4192 from Citra: "svc: change unknown to thread in CreateThread"

parent df5a44a4
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment