From f0797dcf1ff954c357ebf4aa7eb234ebadae333d Mon Sep 17 00:00:00 2001 From: bunnei Date: Wed, 16 Apr 2014 22:19:23 -0400 Subject: [PATCH] added a new function wrapper --- src/core/hle/function_wrappers.h | 5 +++++ 1 file changed, 5 insertions(+) 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 void WrapI_ICU RETURN(retval); } +template void WrapI_VUUUUU(){ + u32 retval = func(Memory::GetPointer(PARAM(0)), PARAM(1), PARAM(2), PARAM(3), PARAM(4), PARAM(5)); + RETURN(retval); +} + template void WrapI_US64() { int retval = func(PARAM(0), PARAM64(2)); RETURN(retval);