diff options
author | bunnei <ericbunnie@gmail.com> | 2014-06-02 04:33:53 +0200 |
---|---|---|
committer | bunnei <ericbunnie@gmail.com> | 2014-06-02 04:33:53 +0200 |
commit | 4819e9a60f36ac4ec1a7cb3d30008353ab03bf14 (patch) | |
tree | 4d0f58cb66e77b13f5fdd1877077bca8131e96ea /src | |
parent | svc: added GetThreadPriority and SetThreadPriority, added (incomplete) DuplicateHandle support (diff) | |
download | yuzu-4819e9a60f36ac4ec1a7cb3d30008353ab03bf14.tar yuzu-4819e9a60f36ac4ec1a7cb3d30008353ab03bf14.tar.gz yuzu-4819e9a60f36ac4ec1a7cb3d30008353ab03bf14.tar.bz2 yuzu-4819e9a60f36ac4ec1a7cb3d30008353ab03bf14.tar.lz yuzu-4819e9a60f36ac4ec1a7cb3d30008353ab03bf14.tar.xz yuzu-4819e9a60f36ac4ec1a7cb3d30008353ab03bf14.tar.zst yuzu-4819e9a60f36ac4ec1a7cb3d30008353ab03bf14.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/core/hle/svc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/svc.cpp b/src/core/hle/svc.cpp index 2384b7936..1f36c7ac5 100644 --- a/src/core/hle/svc.cpp +++ b/src/core/hle/svc.cpp @@ -311,7 +311,7 @@ Result CreateEvent(void* _event, u32 reset_type) { /// Duplicates a kernel handle Result DuplicateHandle(void* _out, Handle handle) { Handle* out = (Handle*)_out; - ERROR_LOG(SVC, "called handle=0x%08X", handle); + DEBUG_LOG(SVC, "called handle=0x%08X", handle); // Translate kernel handles -> real handles if (handle == Kernel::CurrentThread) { |