From 2f55c9e55bb8b505dd2faefb74cad5a8306b7a2a Mon Sep 17 00:00:00 2001 From: bunnei Date: Sun, 1 Jun 2014 10:41:41 -0400 Subject: svc: added missing function wrapper for SleepThread --- src/core/hle/function_wrappers.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/core/hle') diff --git a/src/core/hle/function_wrappers.h b/src/core/hle/function_wrappers.h index 43f0d15e0..7eb62fc48 100644 --- a/src/core/hle/function_wrappers.h +++ b/src/core/hle/function_wrappers.h @@ -642,6 +642,10 @@ template void WrapV_C() { func(Memory::GetCharPointer(PARAM(0))); } +template void WrapV_S64() { + func(((s64)PARAM(1) << 32) | PARAM(0)); +} + template void WrapV_CI() { func(Memory::GetCharPointer(PARAM(0)), PARAM(1)); } -- cgit v1.2.3