From ef93a50f4dceb75cd9752e4b95564e2ab8b3cd9d Mon Sep 17 00:00:00 2001 From: feos Date: Sat, 11 Jun 2016 09:46:21 +0300 Subject: [PATCH] tastudio: fix silly order error in tsmSettings parser --- .../movie/tasproj/TasStateManagerSettings.cs | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/BizHawk.Client.Common/movie/tasproj/TasStateManagerSettings.cs b/BizHawk.Client.Common/movie/tasproj/TasStateManagerSettings.cs index b8e9fbe2f9..9242e3ec88 100644 --- a/BizHawk.Client.Common/movie/tasproj/TasStateManagerSettings.cs +++ b/BizHawk.Client.Common/movie/tasproj/TasStateManagerSettings.cs @@ -135,19 +135,19 @@ namespace BizHawk.Client.Common DiskCapacitymb = 512; if (lines.Length > 3) - StateGap = int.Parse(lines[3]); - else - StateGap = 4; - - if (lines.Length > 4) - BranchStatesInTasproj = bool.Parse(lines[4]); + BranchStatesInTasproj = bool.Parse(lines[3]); else BranchStatesInTasproj = false; - if (lines.Length > 5) - EraseBranchStatesFirst = bool.Parse(lines[5]); + if (lines.Length > 4) + EraseBranchStatesFirst = bool.Parse(lines[4]); else EraseBranchStatesFirst = true; + + if (lines.Length > 5) + StateGap = int.Parse(lines[5]); + else + StateGap = 4; } } }