summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-12-12 21:14:24 +0100
committerLioncash <mathew1800@gmail.com>2018-12-12 21:14:28 +0100
commit22230a2ecaad70a2f2ad9ce9932819178c50fa14 (patch)
treef9c27a482807054caf3b55fd569066999dc73597
parentMerge pull request #1846 from lioncash/dir (diff)
downloadyuzu-22230a2ecaad70a2f2ad9ce9932819178c50fa14.tar
yuzu-22230a2ecaad70a2f2ad9ce9932819178c50fa14.tar.gz
yuzu-22230a2ecaad70a2f2ad9ce9932819178c50fa14.tar.bz2
yuzu-22230a2ecaad70a2f2ad9ce9932819178c50fa14.tar.lz
yuzu-22230a2ecaad70a2f2ad9ce9932819178c50fa14.tar.xz
yuzu-22230a2ecaad70a2f2ad9ce9932819178c50fa14.tar.zst
yuzu-22230a2ecaad70a2f2ad9ce9932819178c50fa14.zip
-rw-r--r--src/core/hle/kernel/svc_wrap.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/svc_wrap.h b/src/core/hle/kernel/svc_wrap.h
index 24aef46c9..f38e0cb6f 100644
--- a/src/core/hle/kernel/svc_wrap.h
+++ b/src/core/hle/kernel/svc_wrap.h
@@ -129,7 +129,7 @@ void SvcWrap() {
template <ResultCode func(u64, u64, u32, u32)>
void SvcWrap() {
FuncReturn(
- func(Param(0), Param(1), static_cast<u32>(Param(3)), static_cast<u32>(Param(3))).raw);
+ func(Param(0), Param(1), static_cast<u32>(Param(2)), static_cast<u32>(Param(3))).raw);
}
template <ResultCode func(u32, u64, u32)>