delta rewinder: fix crash on rewinding when the buffer was full
Woops! Closes #2870.
This commit is contained in:
parent
7cc73ca9b0
commit
8cd67529a3
|
@ -189,7 +189,12 @@ namespace BizHawk.Client.Common
|
|||
_masterLength = (int)sss.Position;
|
||||
_masterFrame = frame;
|
||||
_count++;
|
||||
}, force: true);
|
||||
},
|
||||
indexInvalidated: index =>
|
||||
{
|
||||
_count--;
|
||||
},
|
||||
force: true);
|
||||
});
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue