mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-22 16:15:46 +00:00
Fixed incorrect types for svcBreak
svcBreak reason should be a u32, not a u64.
This commit is contained in:
parent
f6771229a0
commit
a14b6e06a5
2 changed files with 8 additions and 3 deletions
|
@ -239,4 +239,9 @@ void SvcWrap() {
|
|||
func(Param(0), Param(1), Param(2));
|
||||
}
|
||||
|
||||
template <void func(u32, u64, u64)>
|
||||
void SvcWrap() {
|
||||
func((u32)(Param(0) & 0xFFFFFFFF), Param(1), Param(2));
|
||||
}
|
||||
|
||||
} // namespace Kernel
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue