summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/svc.cpp
diff options
context:
space:
mode:
authorMat M <mathew1800@gmail.com>2018-11-18 21:51:32 +0100
committerGitHub <noreply@github.com>2018-11-18 21:51:32 +0100
commit9a1bac840eab6f2353192c2c389972046d5bbed6 (patch)
tree20b50fea97c5d5214a3ca429929b3e61bb7f3599 /src/core/hle/kernel/svc.cpp
parentMerge pull request #1722 from MysticExile/enable-applictation-crash-report (diff)
parentsvc: ResetSignal is not stubbed (diff)
downloadyuzu-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/core/hle/kernel/svc.cpp')
-rw-r--r--src/core/hle/kernel/svc.cpp2
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);