From d691627a35474420a9e50a9a4afdc32e9de1cec9 Mon Sep 17 00:00:00 2001 From: sum2012 Date: Sun, 21 Jun 2020 11:36:02 +0800 Subject: [PATCH] oop --- Core/HLE/FunctionWrappers.h | 5 ----- 1 file changed, 5 deletions(-) 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));