diff --git a/Core/HLE/FunctionWrappers.h b/Core/HLE/FunctionWrappers.h index 0233dd7bdd..01124ea157 100644 --- a/Core/HLE/FunctionWrappers.h +++ b/Core/HLE/FunctionWrappers.h @@ -201,11 +201,6 @@ template void WrapI_UU() { RETURN(retval); } -template void WrapU_UUU() { - int retval = func(PARAM(0), PARAM(1), PARAM(2)); - RETURN(retval); -} - template void WrapI_UFF() { // Not sure about the float arguments. int retval = func(PARAM(0), PARAMF(0), PARAMF(1));