summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/function_wrappers.h11
1 files changed, 9 insertions, 2 deletions
diff --git a/src/core/hle/function_wrappers.h b/src/core/hle/function_wrappers.h
index 0bed78653..ea603a1bb 100644
--- a/src/core/hle/function_wrappers.h
+++ b/src/core/hle/function_wrappers.h
@@ -39,9 +39,16 @@ template<s32 func(s32*, u32*, s32, bool, s64)> void Wrap() {
39 RETURN(retval); 39 RETURN(retval);
40} 40}
41 41
42// TODO(bunnei): Is this correct? Probably not 42// TODO(bunnei): Is this correct? Probably not - Last parameter looks wrong for ArbitrateAddress
43template<s32 func(u32, u32, u32, u32, s64)> void Wrap() { 43template<s32 func(u32, u32, u32, u32, s64)> void Wrap() {
44 RETURN(func(PARAM(5), PARAM(1), PARAM(2), PARAM(3), (((s64)PARAM(4) << 32) | PARAM(0)))); 44 RETURN(func(PARAM(0), PARAM(1), PARAM(2), PARAM(3), (((s64)PARAM(5) << 32) | PARAM(4))));
45}
46
47template<s32 func(u32*)> void Wrap(){
48 u32 param_1 = 0;
49 u32 retval = func(&param_1);
50 Core::g_app_core->SetReg(1, param_1);
51 RETURN(retval);
45} 52}
46 53
47template<s32 func(u32, s64)> void Wrap() { 54template<s32 func(u32, s64)> void Wrap() {