mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-23 07:25:46 +00:00
svc: Correct WaitSynchronization num_handles param type
num_handles is a s32
This commit is contained in:
parent
deaf9af08d
commit
c3c09ca222
2 changed files with 4 additions and 4 deletions
|
@ -248,10 +248,10 @@ void SvcWrap64(Core::System& system) {
|
|||
}
|
||||
|
||||
// Used by WaitSynchronization
|
||||
template <ResultCode func(Core::System&, s32*, u64, u64, s64)>
|
||||
template <ResultCode func(Core::System&, s32*, u64, s32, s64)>
|
||||
void SvcWrap64(Core::System& system) {
|
||||
s32 param_1 = 0;
|
||||
const u32 retval = func(system, ¶m_1, Param(system, 1), static_cast<u32>(Param(system, 2)),
|
||||
const u32 retval = func(system, ¶m_1, Param(system, 1), static_cast<s32>(Param(system, 2)),
|
||||
static_cast<s64>(Param(system, 3)))
|
||||
.raw;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue