summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar bunnei2014-07-21 19:20:33 -0400
committerGravatar bunnei2014-08-05 23:53:58 -0400
commit4d4607041b2c595b635b78eab6d2e507b77bd2ca (patch)
treea4fd7ce51f8e003ea02deb74f10836de3cccfc01 /src
parentKernel: Updated Event and Mutex to specify handle that they are blocking for. (diff)
downloadyuzu-4d4607041b2c595b635b78eab6d2e507b77bd2ca.tar.gz
yuzu-4d4607041b2c595b635b78eab6d2e507b77bd2ca.tar.xz
yuzu-4d4607041b2c595b635b78eab6d2e507b77bd2ca.zip
SVC: Removed ArbitrateAddress log message that spams to much.
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/svc.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/core/hle/svc.cpp b/src/core/hle/svc.cpp
index 17967f260..328d048bd 100644
--- a/src/core/hle/svc.cpp
+++ b/src/core/hle/svc.cpp
@@ -185,8 +185,6 @@ Result CreateAddressArbiter(u32* arbiter) {
185 185
186/// Arbitrate address 186/// Arbitrate address
187Result ArbitrateAddress(Handle arbiter, u32 address, u32 type, u32 value, s64 nanoseconds) { 187Result ArbitrateAddress(Handle arbiter, u32 address, u32 type, u32 value, s64 nanoseconds) {
188 DEBUG_LOG(SVC, "called arbiter=0x%08X, address=0x%08X, type=0x%08X, value=0x%08X, "
189 "nanoseconds=%d", arbiter, address, type, value, nanoseconds);
190 return Kernel::ArbitrateAddress(arbiter, static_cast<Kernel::ArbitrationType>(type), address, 188 return Kernel::ArbitrateAddress(arbiter, static_cast<Kernel::ArbitrationType>(type), address,
191 value); 189 value);
192} 190}