summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/svc.cpp
diff options
context:
space:
mode:
authorTobias <thm.frey@gmail.com>2018-11-18 21:49:17 +0100
committerGitHub <noreply@github.com>2018-11-18 21:49:17 +0100
commit13f79cc5bdb81d32440eb6b2cf0409bc989c929c (patch)
tree2793f477ca4b283b1e2c6c55dc42ad4dafaa86ef /src/core/hle/kernel/svc.cpp
parentMerge pull request #1610 from slashiee/dxt1-alpha (diff)
downloadyuzu-13f79cc5bdb81d32440eb6b2cf0409bc989c929c.tar
yuzu-13f79cc5bdb81d32440eb6b2cf0409bc989c929c.tar.gz
yuzu-13f79cc5bdb81d32440eb6b2cf0409bc989c929c.tar.bz2
yuzu-13f79cc5bdb81d32440eb6b2cf0409bc989c929c.tar.lz
yuzu-13f79cc5bdb81d32440eb6b2cf0409bc989c929c.tar.xz
yuzu-13f79cc5bdb81d32440eb6b2cf0409bc989c929c.tar.zst
yuzu-13f79cc5bdb81d32440eb6b2cf0409bc989c929c.zip
Diffstat (limited to '')
-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 4e490e2b5..c60fa0dfe 100644
--- a/src/core/hle/kernel/svc.cpp
+++ b/src/core/hle/kernel/svc.cpp
@@ -1101,7 +1101,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);