mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-11 06:38:01 -05:00
Fixed incorrect types for svcBreak
svcBreak reason should be a u32, not a u64.
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user