From f35938acdb39a543425562b42b28a4bf5cbf3065 Mon Sep 17 00:00:00 2001 From: feos Date: Sat, 23 Apr 2016 20:53:50 +0300 Subject: [PATCH] tastudio: be able to load broken greenzone file. --- .../movie/tasproj/TasStateManager.cs | 27 ++++++++++--------- 1 file changed, 14 insertions(+), 13 deletions(-) diff --git a/BizHawk.Client.Common/movie/tasproj/TasStateManager.cs b/BizHawk.Client.Common/movie/tasproj/TasStateManager.cs index 5436d95904..360628b21e 100644 --- a/BizHawk.Client.Common/movie/tasproj/TasStateManager.cs +++ b/BizHawk.Client.Common/movie/tasproj/TasStateManager.cs @@ -578,21 +578,22 @@ namespace BizHawk.Client.Common public void Load(BinaryReader br) { States.Clear(); - //if (br.BaseStream.Length > 0) - //{ BaseStream.Length does not return the expected value. - int nstates = br.ReadInt32(); - for (int i = 0; i < nstates; i++) + try { - int frame = br.ReadInt32(); - int len = br.ReadInt32(); - byte[] data = br.ReadBytes(len); - // whether we should allow state removal check here is an interesting question - // nothing was edited yet, so it might make sense to show the project untouched first - SetState(frame, data); - //States.Add(frame, data); - //Used += len; + int nstates = br.ReadInt32(); + for (int i = 0; i < nstates; i++) + { + int frame = br.ReadInt32(); + int len = br.ReadInt32(); + byte[] data = br.ReadBytes(len); + // whether we should allow state removal check here is an interesting question + // nothing was edited yet, so it might make sense to show the project untouched first + SetState(frame, data); + //States.Add(frame, data); + //Used += len; + } } - //} + catch (EndOfStreamException) { } } public void SaveBranchStates(BinaryWriter bw)