From b61a672449feeab645c8b829600be9a527da7cbc Mon Sep 17 00:00:00 2001 From: jacky400 Date: Fri, 7 Dec 2012 12:59:30 +0800 Subject: [PATCH] Add WrapU_UIC for sceSasSetPause --- Core/HLE/FunctionWrappers.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Core/HLE/FunctionWrappers.h b/Core/HLE/FunctionWrappers.h index a0561526f7..43bd31e6a1 100644 --- a/Core/HLE/FunctionWrappers.h +++ b/Core/HLE/FunctionWrappers.h @@ -103,6 +103,10 @@ template void WrapU_I() { RETURN(retval); } +template void WrapU_UIC() { + func(PARAM(0), PARAM(1), Memory::GetCharPointer(PARAM(2))); +} + template void WrapI_I() { int retval = func(PARAM(0)); RETURN(retval);