oops, fix paste logic to be the first different frame, not the last
This commit is contained in:
parent
6eef264f91
commit
ffd2aedfa5
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue