diff options
author | bunnei <bunneidev@gmail.com> | 2014-07-22 01:20:33 +0200 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2014-08-06 05:53:58 +0200 |
commit | 4d4607041b2c595b635b78eab6d2e507b77bd2ca (patch) | |
tree | a4fd7ce51f8e003ea02deb74f10836de3cccfc01 | |
parent | Kernel: Updated Event and Mutex to specify handle that they are blocking for. (diff) | |
download | yuzu-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 |
-rw-r--r-- | src/core/hle/svc.cpp | 2 |
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); } |