diff options
| -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) { | |||
| 311 | /// Duplicates a kernel handle | 311 | /// Duplicates a kernel handle |
| 312 | Result DuplicateHandle(void* _out, Handle handle) { | 312 | Result DuplicateHandle(void* _out, Handle handle) { |
| 313 | Handle* out = (Handle*)_out; | 313 | Handle* out = (Handle*)_out; |
| 314 | ERROR_LOG(SVC, "called handle=0x%08X", handle); | 314 | DEBUG_LOG(SVC, "called handle=0x%08X", handle); |
| 315 | 315 | ||
| 316 | // Translate kernel handles -> real handles | 316 | // Translate kernel handles -> real handles |
| 317 | if (handle == Kernel::CurrentThread) { | 317 | if (handle == Kernel::CurrentThread) { |