diff options
| author | 2014-06-01 10:41:41 -0400 | |
|---|---|---|
| committer | 2014-06-01 10:41:41 -0400 | |
| commit | 2f55c9e55bb8b505dd2faefb74cad5a8306b7a2a (patch) | |
| tree | 856badd67f8545d843349121431864aa130ddef8 /src/core | |
| parent | gsp: always pass through synchronization barrier for commands (diff) | |
| download | yuzu-2f55c9e55bb8b505dd2faefb74cad5a8306b7a2a.tar.gz yuzu-2f55c9e55bb8b505dd2faefb74cad5a8306b7a2a.tar.xz yuzu-2f55c9e55bb8b505dd2faefb74cad5a8306b7a2a.zip | |
svc: added missing function wrapper for SleepThread
Diffstat (limited to 'src/core')
| -rw-r--r-- | src/core/hle/function_wrappers.h | 4 |
1 files changed, 4 insertions, 0 deletions
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 func(const char*)> void WrapV_C() { | |||
| 642 | func(Memory::GetCharPointer(PARAM(0))); | 642 | func(Memory::GetCharPointer(PARAM(0))); |
| 643 | } | 643 | } |
| 644 | 644 | ||
| 645 | template<void func(s64)> void WrapV_S64() { | ||
| 646 | func(((s64)PARAM(1) << 32) | PARAM(0)); | ||
| 647 | } | ||
| 648 | |||
| 645 | template<void func(const char *, int)> void WrapV_CI() { | 649 | template<void func(const char *, int)> void WrapV_CI() { |
| 646 | func(Memory::GetCharPointer(PARAM(0)), PARAM(1)); | 650 | func(Memory::GetCharPointer(PARAM(0)), PARAM(1)); |
| 647 | } | 651 | } |