summaryrefslogtreecommitdiffstats
path: root/src/core/hle/svc.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2015-01-11 06:57:48 +0100
committerbunnei <bunneidev@gmail.com>2015-01-11 06:57:48 +0100
commitc6906319f3a9ba1b33b8b4fec41cce8fd5a4fe7c (patch)
tree8a5260f8e44f637f90e3c84565be04e4d84cedc3 /src/core/hle/svc.cpp
parentMerge pull request #460 from chinhodado/revert-319-travis-apt-cache (diff)
parentAdded Archive ID to fs:USER debug logs involving opening the archive. (diff)
downloadyuzu-c6906319f3a9ba1b33b8b4fec41cce8fd5a4fe7c.tar
yuzu-c6906319f3a9ba1b33b8b4fec41cce8fd5a4fe7c.tar.gz
yuzu-c6906319f3a9ba1b33b8b4fec41cce8fd5a4fe7c.tar.bz2
yuzu-c6906319f3a9ba1b33b8b4fec41cce8fd5a4fe7c.tar.lz
yuzu-c6906319f3a9ba1b33b8b4fec41cce8fd5a4fe7c.tar.xz
yuzu-c6906319f3a9ba1b33b8b4fec41cce8fd5a4fe7c.tar.zst
yuzu-c6906319f3a9ba1b33b8b4fec41cce8fd5a4fe7c.zip
Diffstat (limited to 'src/core/hle/svc.cpp')
-rw-r--r--src/core/hle/svc.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/core/hle/svc.cpp b/src/core/hle/svc.cpp
index ba620bd0f..d3b4483ca 100644
--- a/src/core/hle/svc.cpp
+++ b/src/core/hle/svc.cpp
@@ -185,7 +185,6 @@ static Result WaitSynchronizationN(s32* out, Handle* handles, s32 handle_count,
/// Create an address arbiter (to allocate access to shared resources)
static Result CreateAddressArbiter(u32* arbiter) {
- LOG_TRACE(Kernel_SVC, "called");
Handle handle = Kernel::CreateAddressArbiter();
*arbiter = handle;
return 0;