tastudio: fix disgusting copy-paste error causing exceptions out of nowhere
This commit is contained in:
parent
7d3f1b366f
commit
9c0328859d
|
@ -117,7 +117,7 @@ namespace BizHawk.Client.Common
|
||||||
|
|
||||||
DiskCapacitymb = lines.Length > i ? int.Parse(lines[i++]) : 1;
|
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++]) : 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
|
catch (Exception) // TODO: this is bad
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue