diff options
Diffstat (limited to '')
| -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 7d9389769..4897d3f28 100644 --- a/src/core/hle/function_wrappers.h +++ b/src/core/hle/function_wrappers.h | |||
| @@ -725,6 +725,11 @@ template<int func(int, const char *, u32, void *, int, int, int)> void WrapI_ICU | |||
| 725 | RETURN(retval); | 725 | RETURN(retval); |
| 726 | } | 726 | } |
| 727 | 727 | ||
| 728 | template<int func(void *, u32, u32, u32, u32, u32)> void WrapI_VUUUUU(){ | ||
| 729 | u32 retval = func(Memory::GetPointer(PARAM(0)), PARAM(1), PARAM(2), PARAM(3), PARAM(4), PARAM(5)); | ||
| 730 | RETURN(retval); | ||
| 731 | } | ||
| 732 | |||
| 728 | template<int func(u32, s64)> void WrapI_US64() { | 733 | template<int func(u32, s64)> void WrapI_US64() { |
| 729 | int retval = func(PARAM(0), PARAM64(2)); | 734 | int retval = func(PARAM(0), PARAM64(2)); |
| 730 | RETURN(retval); | 735 | RETURN(retval); |