mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-22 16:15:46 +00:00
svc: Correct parameter type for OutputDebugString()
This should be a u64 to represent size.
This commit is contained in:
parent
ad6c31e1c5
commit
00b69a9527
2 changed files with 3 additions and 3 deletions
|
@ -222,9 +222,9 @@ void SvcWrap() {
|
|||
func((s64)PARAM(0));
|
||||
}
|
||||
|
||||
template <void func(u64, s32 len)>
|
||||
template <void func(u64, u64 len)>
|
||||
void SvcWrap() {
|
||||
func(PARAM(0), (s32)(PARAM(1) & 0xFFFFFFFF));
|
||||
func(PARAM(0), PARAM(1));
|
||||
}
|
||||
|
||||
template <void func(u64, u64, u64)>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue