tastudio: thanks for letting a ulong overflow backwards.

This commit is contained in:
feos 2015-09-16 21:44:42 +03:00
parent 4f07c908a0
commit 6e16f0c5dc
1 changed files with 3 additions and 4 deletions

View File

@ -713,6 +713,7 @@ namespace BizHawk.Client.Common
BranchStates[kvp.Key] = stateList;
}
stateList.Add(branchHash, kvp.Value);
Used += (ulong)stateList[branchHash].Length;
}
currentBranch = _movie.BranchCount;
}
@ -772,9 +773,7 @@ namespace BizHawk.Client.Common
stateList.Remove(branchHash);
if (stateList.Count == 0)
{
BranchStates[kvp.Key] = null;
}
BranchStates.Remove(kvp.Key);
}
// AddBranch
@ -791,8 +790,8 @@ namespace BizHawk.Client.Common
BranchStates[kvp.Key] = stateList;
}
stateList.Add(branchHash, kvp.Value);
Used += (ulong)stateList[branchHash].Length;
}
currentBranch = index;
}