summaryrefslogtreecommitdiffstats
path: root/src/core/hle/function_wrappers.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2014-05-20 03:46:57 +0200
committerbunnei <bunneidev@gmail.com>2014-05-20 03:46:57 +0200
commit204c6bfeca2d3bccfe6602699c0b3420f88aaf07 (patch)
tree4ece05e69f90f50e3390eb93a0790180aafcdbc6 /src/core/hle/function_wrappers.h
parentupdated Travis-CI image/link in readme for new project repo (diff)
parentcommon_types: Changed BasicRect back to Rect, in the common namespace (diff)
downloadyuzu-204c6bfeca2d3bccfe6602699c0b3420f88aaf07.tar
yuzu-204c6bfeca2d3bccfe6602699c0b3420f88aaf07.tar.gz
yuzu-204c6bfeca2d3bccfe6602699c0b3420f88aaf07.tar.bz2
yuzu-204c6bfeca2d3bccfe6602699c0b3420f88aaf07.tar.lz
yuzu-204c6bfeca2d3bccfe6602699c0b3420f88aaf07.tar.xz
yuzu-204c6bfeca2d3bccfe6602699c0b3420f88aaf07.tar.zst
yuzu-204c6bfeca2d3bccfe6602699c0b3420f88aaf07.zip
Diffstat (limited to 'src/core/hle/function_wrappers.h')
-rw-r--r--src/core/hle/function_wrappers.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/core/hle/function_wrappers.h b/src/core/hle/function_wrappers.h
index 18b01b14b..d934eafb4 100644
--- a/src/core/hle/function_wrappers.h
+++ b/src/core/hle/function_wrappers.h
@@ -83,15 +83,6 @@ template<u32 func(int, void *)> void WrapU_IV() {
RETURN(retval);
}
-template<float func()> void WrapF_V() {
- RETURNF(func());
-}
-
-// TODO: Not sure about the floating point parameter passing
-template<float func(int, float, u32)> void WrapF_IFU() {
- RETURNF(func(PARAM(0), PARAMF(0), PARAM(1)));
-}
-
template<u32 func(u32)> void WrapU_U() {
u32 retval = func(PARAM(0));
RETURN(retval);
@@ -127,12 +118,6 @@ template<int func(u32, u32)> void WrapI_UU() {
RETURN(retval);
}
-template<int func(u32, float, float)> void WrapI_UFF() {
- // Not sure about the float arguments.
- int retval = func(PARAM(0), PARAMF(0), PARAMF(1));
- RETURN(retval);
-}
-
template<int func(u32, u32, u32)> void WrapI_UUU() {
int retval = func(PARAM(0), PARAM(1), PARAM(2));
RETURN(retval);