oops, fix paste logic to be the first different frame, not the last

This commit is contained in:
adelikat 2019-11-24 19:23:12 -06:00
parent 6eef264f91
commit ffd2aedfa5
1 changed files with 1 additions and 1 deletions

View File

@ -327,7 +327,7 @@ namespace BizHawk.Client.Common
lg.SetSource(states[i]);
var entry = lg.GenerateLogEntry();
if (Log[frame + i] != entry)
if (firstChangedFrame == -1 && Log[frame + i] != entry)
{
firstChangedFrame = frame + i;
}