summaryrefslogtreecommitdiff
path: root/src/core/hle/svc.cpp
diff options
context:
space:
mode:
authorGravatar bunnei2015-01-11 00:57:48 -0500
committerGravatar bunnei2015-01-11 00:57:48 -0500
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.gz
yuzu-c6906319f3a9ba1b33b8b4fec41cce8fd5a4fe7c.tar.xz
yuzu-c6906319f3a9ba1b33b8b4fec41cce8fd5a4fe7c.zip
Merge pull request #459 from archshift/logs
Small additions and fixes to logging
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,
185 185
186/// Create an address arbiter (to allocate access to shared resources) 186/// Create an address arbiter (to allocate access to shared resources)
187static Result CreateAddressArbiter(u32* arbiter) { 187static Result CreateAddressArbiter(u32* arbiter) {
188 LOG_TRACE(Kernel_SVC, "called");
189 Handle handle = Kernel::CreateAddressArbiter(); 188 Handle handle = Kernel::CreateAddressArbiter();
190 *arbiter = handle; 189 *arbiter = handle;
191 return 0; 190 return 0;