Skip to content

Commit

Permalink
Merge pull request #56 from shirokosunaookami/patch-1
Browse files Browse the repository at this point in the history
Fix QuickRetry when use io4 firmware
  • Loading branch information
clansty authored Oct 6, 2024
2 parents ce53acd + aaca3e6 commit 587993c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion AquaMai/UX/QuickSkip.cs
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public static void PostGameProcessUpdate(GameProcess __instance, Message[] ____m
traverse.Method("SetRelease").GetValue();
}

if (Input.GetKey(KeyCode.Alpha7))
if (Input.GetKey(KeyCode.Alpha7) || InputManager.GetSystemInputPush(InputManager.SystemButtonSetting.ButtonService))
{
// This is original typo in Assembly-CSharp
Singleton<GamePlayManager>.Instance.SetQuickRetryFrag(flag: true);
Expand Down

0 comments on commit 587993c

Please sign in to comment.