diff options
Diffstat (limited to 'src/core/hle/kernel/svc.cpp')
| -rw-r--r-- | src/core/hle/kernel/svc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/svc.cpp b/src/core/hle/kernel/svc.cpp index 4df38c977..e2da68227 100644 --- a/src/core/hle/kernel/svc.cpp +++ b/src/core/hle/kernel/svc.cpp | |||
| @@ -510,7 +510,7 @@ static void ExitProcess() { | |||
| 510 | /// Creates a new thread | 510 | /// Creates a new thread |
| 511 | static ResultCode CreateThread(Handle* out_handle, VAddr entry_point, u64 arg, VAddr stack_top, | 511 | static ResultCode CreateThread(Handle* out_handle, VAddr entry_point, u64 arg, VAddr stack_top, |
| 512 | u32 priority, s32 processor_id) { | 512 | u32 priority, s32 processor_id) { |
| 513 | std::string name = Common::StringFromFormat("unknown-%llx", entry_point); | 513 | std::string name = fmt::format("unknown-{:X}", entry_point); |
| 514 | 514 | ||
| 515 | if (priority > THREADPRIO_LOWEST) { | 515 | if (priority > THREADPRIO_LOWEST) { |
| 516 | return ERR_OUT_OF_RANGE; | 516 | return ERR_OUT_OF_RANGE; |