diff options
author | Lioncash <mathew1800@gmail.com> | 2018-12-01 08:05:19 +0100 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-12-01 08:11:42 +0100 |
commit | e88cdcc912ae6929f9008c1b307c62f1e7b0637f (patch) | |
tree | dd7c562968eeaa58051c62fc317256a20687e11b /src/core | |
parent | Merge pull request #1829 from lioncash/lang (diff) | |
download | yuzu-e88cdcc912ae6929f9008c1b307c62f1e7b0637f.tar yuzu-e88cdcc912ae6929f9008c1b307c62f1e7b0637f.tar.gz yuzu-e88cdcc912ae6929f9008c1b307c62f1e7b0637f.tar.bz2 yuzu-e88cdcc912ae6929f9008c1b307c62f1e7b0637f.tar.lz yuzu-e88cdcc912ae6929f9008c1b307c62f1e7b0637f.tar.xz yuzu-e88cdcc912ae6929f9008c1b307c62f1e7b0637f.tar.zst yuzu-e88cdcc912ae6929f9008c1b307c62f1e7b0637f.zip |
Diffstat (limited to 'src/core')
-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 5e9660a48..3339777c1 100644 --- a/src/core/hle/kernel/svc.cpp +++ b/src/core/hle/kernel/svc.cpp @@ -1044,7 +1044,7 @@ static ResultCode CreateThread(Handle* out_handle, VAddr entry_point, u64 arg, V LOG_TRACE(Kernel_SVC, "called entrypoint=0x{:08X} ({}), arg=0x{:08X}, stacktop=0x{:08X}, " "threadpriority=0x{:08X}, processorid=0x{:08X} : created handle=0x{:08X}", - entry_point, name, arg, stack_top, priority, processor_id, *out_handle); + entry_point, arg, stack_top, priority, processor_id, *out_handle); if (priority > THREADPRIO_LOWEST) { LOG_ERROR(Kernel_SVC, "An invalid priority was specified, expected {} but got {}", |