From 30e365e4fccacff969c2210208f90cb05ad73b93 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Wed, 11 Dec 2019 07:11:47 -0500 Subject: kernel/svc: Correct function signature of SignalProcessWideKey This function doesn't actually return a result code, so we can amend the signature of it to match. --- src/core/hle/kernel/svc_wrap.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/core/hle/kernel/svc_wrap.h') diff --git a/src/core/hle/kernel/svc_wrap.h b/src/core/hle/kernel/svc_wrap.h index 9452e3b6f..29a2cfa9d 100644 --- a/src/core/hle/kernel/svc_wrap.h +++ b/src/core/hle/kernel/svc_wrap.h @@ -112,11 +112,6 @@ void SvcWrap(Core::System& system) { FuncReturn(system, retval); } -template -void SvcWrap(Core::System& system) { - FuncReturn(system, func(system, Param(system, 0), static_cast(Param(system, 1))).raw); -} - template void SvcWrap(Core::System& system) { FuncReturn(system, func(system, Param(system, 0), static_cast(Param(system, 1))).raw); @@ -327,6 +322,11 @@ void SvcWrap(Core::System& system) { func(system, static_cast(Param(system, 0))); } +template +void SvcWrap(Core::System& system) { + func(system, Param(system, 0), static_cast(Param(system, 1))); +} + template void SvcWrap(Core::System& system) { func(system, Param(system, 0), Param(system, 1)); -- cgit v1.2.3