summaryrefslogtreecommitdiffstats
path: root/src/core/hle/svc.cpp
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2015-01-13 20:49:26 +0100
committerSubv <subv2112@gmail.com>2015-01-13 20:49:26 +0100
commit9e2ae289b8b269bfe2835356780c160dbccc18f4 (patch)
treeb59563e79befce9d6f366a114ebdbdda2bc166b8 /src/core/hle/svc.cpp
parentMerge pull request #477 from lioncash/vfp (diff)
downloadyuzu-9e2ae289b8b269bfe2835356780c160dbccc18f4.tar
yuzu-9e2ae289b8b269bfe2835356780c160dbccc18f4.tar.gz
yuzu-9e2ae289b8b269bfe2835356780c160dbccc18f4.tar.bz2
yuzu-9e2ae289b8b269bfe2835356780c160dbccc18f4.tar.lz
yuzu-9e2ae289b8b269bfe2835356780c160dbccc18f4.tar.xz
yuzu-9e2ae289b8b269bfe2835356780c160dbccc18f4.tar.zst
yuzu-9e2ae289b8b269bfe2835356780c160dbccc18f4.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/svc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/svc.cpp b/src/core/hle/svc.cpp
index 5c6a3be80..a487f757c 100644
--- a/src/core/hle/svc.cpp
+++ b/src/core/hle/svc.cpp
@@ -194,7 +194,7 @@ static Result ArbitrateAddress(Handle arbiter, u32 address, u32 type, u32 value,
LOG_TRACE(Kernel_SVC, "called handle=0x%08X, address=0x%08X, type=0x%08X, value=0x%08X", arbiter,
address, type, value);
return Kernel::ArbitrateAddress(arbiter, static_cast<Kernel::ArbitrationType>(type),
- address, value).raw;
+ address, value, nanoseconds).raw;
}
/// Used to output a message on a debug hardware unit - does nothing on a retail unit