mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2026-08-18 22:23:35 +00:00
Port # #4192 from Citra: "svc: change unknown to thread in CreateThread"
This commit is contained in:
committed by
fearlessTobi
parent
ef9d72bfac
commit
d1e28cc0e3
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user