Update Core/HLE/FunctionWrappers.h

This commit is contained in:
jacky400 2012-12-08 14:22:47 +08:00
parent e7cb558cb9
commit 453182b7bc

View File

@ -103,9 +103,7 @@ template<u32 func(int)> void WrapU_I() {
RETURN(retval);
}
template<u32 func(u32, int, const char *)> void WrapU_UIC() {
func(PARAM(0), PARAM(1), Memory::GetCharPointer(PARAM(2)));
}
template<int func(int)> void WrapI_I() {
int retval = func(PARAM(0));