Fix SetAxisStates even though it's not used anywhere except tests.

This commit is contained in:
SuuperW 2025-07-01 21:09:37 -05:00
parent ad7416188d
commit 1270f05728
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -382,7 +382,7 @@ namespace BizHawk.Client.Common
{
if (frame + count >= Log.Count) // Insert blank frames up to this point
{
ExtendMovieForEdit(frame - Log.Count + 1);
ExtendMovieForEdit(frame + count - Log.Count);
}
ChangeLog.AddGeneralUndo(frame, frame + count - 1, $"Set {buttonName}({val}): {frame}-{frame + count - 1}");