diff --git a/src/core/hle/function_wrappers.h b/src/core/hle/function_wrappers.h index 7d93897694f00fb57461b6017ee10c1e8e40e800..4897d3f286e094043cb949136dd67d274fde0cc0 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 RETURN(retval); } +template<int func(void *, u32, u32, u32, u32, u32)> void WrapI_VUUUUU(){ + u32 retval = func(Memory::GetPointer(PARAM(0)), PARAM(1), PARAM(2), PARAM(3), PARAM(4), PARAM(5)); + RETURN(retval); +} + template<int func(u32, s64)> void WrapI_US64() { int retval = func(PARAM(0), PARAM64(2)); RETURN(retval);