Bk2Movie - remove some more copy pasta I missed from an earlier commit

This commit is contained in:
adelikat 2020-06-06 13:13:30 -05:00
parent 420253b6dd
commit 877b02e429
1 changed files with 1 additions and 14 deletions

View File

@ -166,20 +166,7 @@ namespace BizHawk.Client.Common
continue;
}
if (line.Contains("Frame 0x")) // NES stores frame count in hex, yay
{
var strs = line.Split('x');
try
{
stateFrame = int.Parse(strs[1], NumberStyles.HexNumber);
}
catch
{
errorMessage = "Savestate Frame number failed to parse";
return false;
}
}
else if (line.Contains("Frame "))
if (line.Contains("Frame "))
{
var strs = line.Split(' ');
try