Don't increment the Rerecord counter with loading a bk2 or tasproj movie, fixes the obvserved issue in issue 303. However, a bigger concern is why loading a movie and stopping it is causing the movie to be saved in the first place
This commit is contained in:
parent
a7432a1e52
commit
891d3933bd
|
@ -105,7 +105,9 @@ namespace BizHawk.Client.Common
|
|||
bl.GetLump(BinaryStateLump.Input, true, delegate(TextReader tr)
|
||||
{
|
||||
var errorMessage = string.Empty;
|
||||
IsCountingRerecords = false;
|
||||
ExtractInputLog(tr, out errorMessage);
|
||||
IsCountingRerecords = true;
|
||||
});
|
||||
|
||||
if (StartsFromSavestate)
|
||||
|
|
|
@ -144,7 +144,9 @@ namespace BizHawk.Client.Common
|
|||
bl.GetLump(BinaryStateLump.Input, true, delegate(TextReader tr)
|
||||
{
|
||||
var errorMessage = string.Empty;
|
||||
IsCountingRerecords = false;
|
||||
ExtractInputLog(tr, out errorMessage);
|
||||
IsCountingRerecords = true;
|
||||
});
|
||||
|
||||
if (StartsFromSavestate)
|
||||
|
|
Loading…
Reference in New Issue