diff options
| author | 2014-06-01 22:33:53 -0400 | |
|---|---|---|
| committer | 2014-06-01 22:33:53 -0400 | |
| commit | 4819e9a60f36ac4ec1a7cb3d30008353ab03bf14 (patch) | |
| tree | 4d0f58cb66e77b13f5fdd1877077bca8131e96ea /src | |
| parent | svc: added GetThreadPriority and SetThreadPriority, added (incomplete) Duplic... (diff) | |
| download | yuzu-4819e9a60f36ac4ec1a7cb3d30008353ab03bf14.tar.gz yuzu-4819e9a60f36ac4ec1a7cb3d30008353ab03bf14.tar.xz yuzu-4819e9a60f36ac4ec1a7cb3d30008353ab03bf14.zip | |
svc: changed DuplicateHandle log message from "error" to "debug"
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) { | |||
| 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) { |