From bf98466a7809356c108d2f6f1645e64ca7fcd02e Mon Sep 17 00:00:00 2001 From: ANR2ME Date: Mon, 28 Feb 2022 16:58:51 +0700 Subject: [PATCH] Added a FunctionWrapper used by sceNpService --- Core/HLE/FunctionWrappers.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Core/HLE/FunctionWrappers.h b/Core/HLE/FunctionWrappers.h index 9feb73cd04..d745818338 100644 --- a/Core/HLE/FunctionWrappers.h +++ b/Core/HLE/FunctionWrappers.h @@ -765,6 +765,11 @@ template void WrapU_UUUUUUU() { RETURN(retval); } +template void WrapI_IUUUUUU() { + int retval = func(PARAM(0), PARAM(1), PARAM(2), PARAM(3), PARAM(4), PARAM(5), PARAM(6)); + RETURN(retval); +} + template void WrapI_UIUU() { u32 retval = func(PARAM(0), PARAM(1), PARAM(2), PARAM(3)); RETURN(retval);