Skip to content
This repository has been archived by the owner on Aug 28, 2024. It is now read-only.

Commit

Permalink
fix: fixed input to main.
Browse files Browse the repository at this point in the history
  • Loading branch information
ArchiDog1998 committed Jul 25, 2023
1 parent 926381c commit 7d7f758
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions Resources/AnimationLockTime.json
Original file line number Diff line number Diff line change
Expand Up @@ -387,6 +387,7 @@
"16556": 0.6,
"16557": 0.6,
"16559": 0.6,
"16766": 0.1,
"16926": 0.1,
"17209": 0.6,
"17215": 0.1,
Expand Down
2 changes: 1 addition & 1 deletion RotationSolver/Updaters/InputUpdater.cs
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ private static void KeyDown(KeyRecord key)
}
else if(OtherConfiguration.InputConfig.KeyDoAction == key)
{
Svc.Commands.ProcessCommand(OtherCommandType.NextAction.GetCommandStr());
RSCommands.DoAction();
}
}

Expand Down
4 changes: 2 additions & 2 deletions RotationSolver/Updaters/MajorUpdater.cs
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,8 @@ private unsafe static void FrameworkUpdate(Framework framework)
}

MacroUpdater.UpdateMacro();

InputUpdater.UpdateCommand();
}
catch (Exception ex)
{
Expand Down Expand Up @@ -155,8 +157,6 @@ private static void UpdateWork()
ActionUpdater.UpdateNextAction();

RSCommands.UpdateRotationState();

InputUpdater.UpdateCommand();
}
catch (Exception ex)
{
Expand Down

0 comments on commit 7d7f758

Please sign in to comment.