diff options
author | Lioncash <mathew1800@gmail.com> | 2018-09-12 10:49:08 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-09-12 10:49:11 +0200 |
commit | 04d723baf96e35222c922fb212f92e60f8b7370c (patch) | |
tree | 531e465a5fbca802ad6523134f0b8f5be12406d5 /src/core/hle/kernel/svc_wrap.h | |
parent | Merge pull request #1296 from lioncash/prepo (diff) | |
download | yuzu-04d723baf96e35222c922fb212f92e60f8b7370c.tar yuzu-04d723baf96e35222c922fb212f92e60f8b7370c.tar.gz yuzu-04d723baf96e35222c922fb212f92e60f8b7370c.tar.bz2 yuzu-04d723baf96e35222c922fb212f92e60f8b7370c.tar.lz yuzu-04d723baf96e35222c922fb212f92e60f8b7370c.tar.xz yuzu-04d723baf96e35222c922fb212f92e60f8b7370c.tar.zst yuzu-04d723baf96e35222c922fb212f92e60f8b7370c.zip |
Diffstat (limited to 'src/core/hle/kernel/svc_wrap.h')
-rw-r--r-- | src/core/hle/kernel/svc_wrap.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/kernel/svc_wrap.h b/src/core/hle/kernel/svc_wrap.h index 79c3fe31b..1eda5f879 100644 --- a/src/core/hle/kernel/svc_wrap.h +++ b/src/core/hle/kernel/svc_wrap.h @@ -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)> |