diff options
Diffstat (limited to 'src/core/hle/function_wrappers.h')
| -rw-r--r-- | src/core/hle/function_wrappers.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/core/hle/function_wrappers.h b/src/core/hle/function_wrappers.h index 528208178..5d6d0eb56 100644 --- a/src/core/hle/function_wrappers.h +++ b/src/core/hle/function_wrappers.h | |||
| @@ -42,6 +42,11 @@ void Wrap() { | |||
| 42 | FuncReturn(func(PARAM(0), PARAM(1)).raw); | 42 | FuncReturn(func(PARAM(0), PARAM(1)).raw); |
| 43 | } | 43 | } |
| 44 | 44 | ||
| 45 | template <ResultCode func(u64, u64, u64)> | ||
| 46 | void Wrap() { | ||
| 47 | FuncReturn(func(PARAM(0), PARAM(1), PARAM(2)).raw); | ||
| 48 | } | ||
| 49 | |||
| 45 | template <ResultCode func(u64, u64, s64)> | 50 | template <ResultCode func(u64, u64, s64)> |
| 46 | void Wrap() { | 51 | void Wrap() { |
| 47 | FuncReturn(func(PARAM(1), PARAM(2), (s64)PARAM(3)).raw); | 52 | FuncReturn(func(PARAM(1), PARAM(2), (s64)PARAM(3)).raw); |