tastudio: fix disgusting copy-paste error causing exceptions out of nowhere

This commit is contained in:
feos 2018-03-10 17:05:40 +03:00
parent 7d3f1b366f
commit 9c0328859d
1 changed files with 1 additions and 1 deletions

View File

@ -117,7 +117,7 @@ namespace BizHawk.Client.Common
DiskCapacitymb = lines.Length > i ? int.Parse(lines[i++]) : 1;
FileStateGap = lines.Length > i ? int.Parse(lines[i++]) : 4;
FileStateGap = lines.Length > i ? int.Parse(lines[i++]) : 64;
MemStateGapDivider = lines.Length > i ? int.Parse(lines[i++]) : 64;
}
catch (Exception) // TODO: this is bad
{