Load rerecord count when loading a movie

This commit is contained in:
andres.delikat 2011-05-18 00:08:51 +00:00
parent bee9eaf6f3
commit 2b41592c9b
1 changed files with 8 additions and 0 deletions

View File

@ -190,6 +190,14 @@ namespace BizHawk.MultiClient
{
str = ParseHeader(str, MovieHeader.RERECORDS);
Header.AddHeaderLine(MovieHeader.RERECORDS, str);
try
{
rerecordCount = int.Parse(str);
}
catch
{
rerecordCount = 0;
}
}
else if (str.Contains(MovieHeader.AUTHOR))
{