From 26be454999e83d8876171efd6c61cd58de7b54b1 Mon Sep 17 00:00:00 2001 From: matthewdavidrichardanderson Date: Fri, 15 May 2026 07:05:08 +0200 Subject: [PATCH] soft reset hotkey on release (#1358) Co-authored-by: matthewdavidrichardanderson --- src/dusk/imgui/ImGuiConsole.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dusk/imgui/ImGuiConsole.cpp b/src/dusk/imgui/ImGuiConsole.cpp index 31ac9ab40d..077b4c15bc 100644 --- a/src/dusk/imgui/ImGuiConsole.cpp +++ b/src/dusk/imgui/ImGuiConsole.cpp @@ -263,7 +263,7 @@ namespace dusk { } if (getSettings().game.enableResetKeybind && ImGui::GetIO().KeyCtrl && - ImGui::IsKeyPressed(ImGuiKey_R) && !fpcM_SearchByName(fpcNm_LOGO_SCENE_e)) + ImGui::IsKeyReleased(ImGuiKey_R) && !fpcM_SearchByName(fpcNm_LOGO_SCENE_e)) { JUTGamePad::C3ButtonReset::sResetSwitchPushing = true; }