From f723a498e737b077b587a0ff04e97900d9916bca Mon Sep 17 00:00:00 2001 From: zawata Date: Fri, 26 Jun 2015 21:48:08 -0700 Subject: Core\HLE : Fix Warning "signed/unsigned mismatch" --- src/core/hle/function_wrappers.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/core/hle/function_wrappers.h') diff --git a/src/core/hle/function_wrappers.h b/src/core/hle/function_wrappers.h index 5949cb47..ea077743 100644 --- a/src/core/hle/function_wrappers.h +++ b/src/core/hle/function_wrappers.h @@ -113,7 +113,7 @@ template void Wrap() { FuncReturn(func(PARAM(0)).raw); } -template void Wrap(){ +template void Wrap(){ FuncReturn(func((s64*)Memory::GetPointer(PARAM(0)), PARAM(1), (u32*)Memory::GetPointer(PARAM(2)), (s32)PARAM(3)).raw); } -- cgit v1.2.3