diff options
Diffstat (limited to 'src/core/hle/kernel')
| -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 e86d60c22..948989b31 100644 --- a/src/core/hle/kernel/svc.cpp +++ b/src/core/hle/kernel/svc.cpp | |||
| @@ -1093,7 +1093,7 @@ static void ExitProcess() { | |||
| 1093 | static ResultCode CreateThread(Handle* out_handle, VAddr entry_point, u64 arg, VAddr stack_top, | 1093 | static ResultCode CreateThread(Handle* out_handle, VAddr entry_point, u64 arg, VAddr stack_top, |
| 1094 | u32 priority, s32 processor_id) { | 1094 | u32 priority, s32 processor_id) { |
| 1095 | LOG_TRACE(Kernel_SVC, | 1095 | LOG_TRACE(Kernel_SVC, |
| 1096 | "called entrypoint=0x{:08X} ({}), arg=0x{:08X}, stacktop=0x{:08X}, " | 1096 | "called entrypoint=0x{:08X}, arg=0x{:08X}, stacktop=0x{:08X}, " |
| 1097 | "threadpriority=0x{:08X}, processorid=0x{:08X} : created handle=0x{:08X}", | 1097 | "threadpriority=0x{:08X}, processorid=0x{:08X} : created handle=0x{:08X}", |
| 1098 | entry_point, arg, stack_top, priority, processor_id, *out_handle); | 1098 | entry_point, arg, stack_top, priority, processor_id, *out_handle); |
| 1099 | 1099 | ||