summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/svc_wrap.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/kernel/svc_wrap.h')
-rw-r--r--src/core/hle/kernel/svc_wrap.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/kernel/svc_wrap.h b/src/core/hle/kernel/svc_wrap.h
index f8e50a24f..4798ce733 100644
--- a/src/core/hle/kernel/svc_wrap.h
+++ b/src/core/hle/kernel/svc_wrap.h
@@ -57,9 +57,9 @@ void SvcWrap() {
FuncReturn(retval);
}
-template <ResultCode func(u64, u32)>
+template <ResultCode func(u64, s32)>
void SvcWrap() {
- FuncReturn(func(PARAM(0), (u32)PARAM(1)).raw);
+ FuncReturn(func(PARAM(0), (s32)PARAM(1)).raw);
}
template <ResultCode func(u64*, u64)>