diff --git a/src/frontend-common/common_host_interface.cpp b/src/frontend-common/common_host_interface.cpp index a4f1a918d..af9b24d5a 100644 --- a/src/frontend-common/common_host_interface.cpp +++ b/src/frontend-common/common_host_interface.cpp @@ -1408,6 +1408,12 @@ void CommonHostInterface::RegisterGeneralHotkeys() } }); + RegisterHotkey(StaticString(TRANSLATABLE("Hotkeys", "General")), StaticString("Reset"), + StaticString(TRANSLATABLE("Hotkeys", "Reset System")), [this](bool pressed) { + if (!pressed && System::IsValid()) + ResetSystem(); + }); + RegisterHotkey(StaticString(TRANSLATABLE("Hotkeys", "General")), StaticString("Screenshot"), StaticString(TRANSLATABLE("Hotkeys", "Save Screenshot")), [this](bool pressed) { if (!pressed && System::IsValid())