summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar bunnei2018-01-01 15:48:08 -0500
committerGravatar bunnei2018-01-01 15:48:08 -0500
commitdc4fe2fbd5ce79093858654c23907878f1413d27 (patch)
treef358d00e7b0d13460162298f312d3e62545c12a6 /src
parentcmake: Add missing object_address_table. (diff)
downloadyuzu-dc4fe2fbd5ce79093858654c23907878f1413d27.tar.gz
yuzu-dc4fe2fbd5ce79093858654c23907878f1413d27.tar.xz
yuzu-dc4fe2fbd5ce79093858654c23907878f1413d27.zip
svc: Fix string formatting for CreateThread.
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/svc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/svc.cpp b/src/core/hle/svc.cpp
index 584294fc5..fa6fd9ab1 100644
--- a/src/core/hle/svc.cpp
+++ b/src/core/hle/svc.cpp
@@ -318,7 +318,7 @@ static void ExitProcess() {
318/// Creates a new thread 318/// Creates a new thread
319static ResultCode CreateThread(Handle* out_handle, VAddr entry_point, u64 arg, VAddr stack_top, 319static ResultCode CreateThread(Handle* out_handle, VAddr entry_point, u64 arg, VAddr stack_top,
320 u32 priority, s32 processor_id) { 320 u32 priority, s32 processor_id) {
321 std::string name = Common::StringFromFormat("unknown-%016" PRIX64, entry_point); 321 std::string name = Common::StringFromFormat("unknown-%llx", entry_point);
322 322
323 if (priority > THREADPRIO_LOWEST) { 323 if (priority > THREADPRIO_LOWEST) {
324 return Kernel::ERR_OUT_OF_RANGE; 324 return Kernel::ERR_OUT_OF_RANGE;