diff options
author | Subv <subv2112@gmail.com> | 2014-12-13 19:43:01 +0100 |
---|---|---|
committer | Subv <subv2112@gmail.com> | 2014-12-13 19:43:01 +0100 |
commit | 1051795c329345ac6e08ac1d19024f56568b762d (patch) | |
tree | 4cd62aa7394c5b516cc00cb60c2e49a90d6bf14a /src/core/hle | |
parent | Kernel/Semaphore: Small style change (diff) | |
download | yuzu-1051795c329345ac6e08ac1d19024f56568b762d.tar yuzu-1051795c329345ac6e08ac1d19024f56568b762d.tar.gz yuzu-1051795c329345ac6e08ac1d19024f56568b762d.tar.bz2 yuzu-1051795c329345ac6e08ac1d19024f56568b762d.tar.lz yuzu-1051795c329345ac6e08ac1d19024f56568b762d.tar.xz yuzu-1051795c329345ac6e08ac1d19024f56568b762d.tar.zst yuzu-1051795c329345ac6e08ac1d19024f56568b762d.zip |
Diffstat (limited to 'src/core/hle')
-rw-r--r-- | src/core/hle/svc.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/svc.cpp b/src/core/hle/svc.cpp index 2846bb482..f3595096e 100644 --- a/src/core/hle/svc.cpp +++ b/src/core/hle/svc.cpp @@ -292,14 +292,14 @@ static Result GetThreadId(u32* thread_id, Handle handle) { /// Creates a semaphore static Result CreateSemaphore(Handle* semaphore, s32 initial_count, s32 max_count) { ResultCode res = Kernel::CreateSemaphore(semaphore, initial_count, max_count); - DEBUG_LOG(SVC, "called initial_count=%d, max_count=%d, created handle=0x%08X", + LOG_TRACE(Kernel_SVC, "called initial_count=%d, max_count=%d, created handle=0x%08X", initial_count, max_count, *semaphore); return res.raw; } /// Releases a certain number of slots in a semaphore static Result ReleaseSemaphore(s32* count, Handle semaphore, s32 release_count) { - DEBUG_LOG(SVC, "called release_count=%d, handle=0x%08X", release_count, semaphore); + LOG_TRACE(Kernel_SVC, "called release_count=%d, handle=0x%08X", release_count, semaphore); ResultCode res = Kernel::ReleaseSemaphore(count, semaphore, release_count); return res.raw; } |