Merge pull request #1728 from FearlessTobi/reset-signal

svc: ResetSignal is not stubbed
This commit is contained in:
Mat M 2018-11-18 15:51:32 -05:00 committed by GitHub
commit 9a1bac840e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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);