summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2014-07-22 01:20:33 +0200
committerbunnei <bunneidev@gmail.com>2014-08-06 05:53:58 +0200
commit4d4607041b2c595b635b78eab6d2e507b77bd2ca (patch)
treea4fd7ce51f8e003ea02deb74f10836de3cccfc01 /src
parentKernel: Updated Event and Mutex to specify handle that they are blocking for. (diff)
downloadyuzu-4d4607041b2c595b635b78eab6d2e507b77bd2ca.tar
yuzu-4d4607041b2c595b635b78eab6d2e507b77bd2ca.tar.gz
yuzu-4d4607041b2c595b635b78eab6d2e507b77bd2ca.tar.bz2
yuzu-4d4607041b2c595b635b78eab6d2e507b77bd2ca.tar.lz
yuzu-4d4607041b2c595b635b78eab6d2e507b77bd2ca.tar.xz
yuzu-4d4607041b2c595b635b78eab6d2e507b77bd2ca.tar.zst
yuzu-4d4607041b2c595b635b78eab6d2e507b77bd2ca.zip
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) {
/// Arbitrate address
Result ArbitrateAddress(Handle arbiter, u32 address, u32 type, u32 value, s64 nanoseconds) {
- DEBUG_LOG(SVC, "called arbiter=0x%08X, address=0x%08X, type=0x%08X, value=0x%08X, "
- "nanoseconds=%d", arbiter, address, type, value, nanoseconds);
return Kernel::ArbitrateAddress(arbiter, static_cast<Kernel::ArbitrationType>(type), address,
value);
}