summaryrefslogtreecommitdiffstats
path: root/src/core/hle/svc.cpp
diff options
context:
space:
mode:
authorarchshift <admin@archshift.com>2015-01-10 22:07:50 +0100
committerarchshift <admin@archshift.com>2015-01-10 23:32:10 +0100
commit228843c43e21ce4d3ca5fe0adc96fcb34505446b (patch)
treeb965681736fca204e49ea6f2c130409814c3006a /src/core/hle/svc.cpp
parentMerge pull request #458 from yuriks/cmake-debug (diff)
downloadyuzu-228843c43e21ce4d3ca5fe0adc96fcb34505446b.tar
yuzu-228843c43e21ce4d3ca5fe0adc96fcb34505446b.tar.gz
yuzu-228843c43e21ce4d3ca5fe0adc96fcb34505446b.tar.bz2
yuzu-228843c43e21ce4d3ca5fe0adc96fcb34505446b.tar.lz
yuzu-228843c43e21ce4d3ca5fe0adc96fcb34505446b.tar.xz
yuzu-228843c43e21ce4d3ca5fe0adc96fcb34505446b.tar.zst
yuzu-228843c43e21ce4d3ca5fe0adc96fcb34505446b.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;