mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-17 00:07:56 -05:00
svc: updated WaitSynchronizationN to properly use first pointer argument
This commit is contained in:
@ -766,7 +766,9 @@ template<int func(u32, s64)> void WrapI_US64() {
|
||||
}
|
||||
|
||||
template<int func(void*, void*, u32, u32, s64)> void WrapI_VVUUS64() {
|
||||
int retval = func(Memory::GetPointer(PARAM(5)), Memory::GetPointer(PARAM(1)), PARAM(2), PARAM(3), (((u64)PARAM(4) << 32) | PARAM(0)));
|
||||
u32 param_1 = 0;
|
||||
int retval = func(¶m_1, Memory::GetPointer(PARAM(1)), PARAM(2), PARAM(3), (((u64)PARAM(4) << 32) | PARAM(0)));
|
||||
Core::g_app_core->SetReg(1, param_1);
|
||||
RETURN(retval);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user