diff options
author | Mat M <mathew1800@gmail.com> | 2018-11-18 21:51:32 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-18 21:51:32 +0100 |
commit | 9a1bac840eab6f2353192c2c389972046d5bbed6 (patch) | |
tree | 20b50fea97c5d5214a3ca429929b3e61bb7f3599 /src | |
parent | Merge pull request #1722 from MysticExile/enable-applictation-crash-report (diff) | |
parent | svc: ResetSignal is not stubbed (diff) | |
download | yuzu-9a1bac840eab6f2353192c2c389972046d5bbed6.tar yuzu-9a1bac840eab6f2353192c2c389972046d5bbed6.tar.gz yuzu-9a1bac840eab6f2353192c2c389972046d5bbed6.tar.bz2 yuzu-9a1bac840eab6f2353192c2c389972046d5bbed6.tar.lz yuzu-9a1bac840eab6f2353192c2c389972046d5bbed6.tar.xz yuzu-9a1bac840eab6f2353192c2c389972046d5bbed6.tar.zst yuzu-9a1bac840eab6f2353192c2c389972046d5bbed6.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/core/hle/kernel/svc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/svc.cpp b/src/core/hle/kernel/svc.cpp index 2e7c9d094..75dbfc31d 100644 --- a/src/core/hle/kernel/svc.cpp +++ b/src/core/hle/kernel/svc.cpp @@ -1181,7 +1181,7 @@ static ResultCode CloseHandle(Handle handle) { /// Reset an event static ResultCode ResetSignal(Handle handle) { - LOG_WARNING(Kernel_SVC, "(STUBBED) called handle 0x{:08X}", handle); + LOG_DEBUG(Kernel_SVC, "called handle 0x{:08X}", handle); const auto& handle_table = Core::CurrentProcess()->GetHandleTable(); auto event = handle_table.Get<Event>(handle); |