From 178820746cd0cb8f94eb2ab7a71fff4e91f20452 Mon Sep 17 00:00:00 2001 From: feos Date: Tue, 2 Aug 2016 22:46:21 +0300 Subject: [PATCH] tastudio: prevent crash occurring at new state capture mem leak is still there for N64 --- BizHawk.Client.Common/movie/tasproj/TasStateManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.Client.Common/movie/tasproj/TasStateManager.cs b/BizHawk.Client.Common/movie/tasproj/TasStateManager.cs index 11cd9fb289..66431a6905 100644 --- a/BizHawk.Client.Common/movie/tasproj/TasStateManager.cs +++ b/BizHawk.Client.Common/movie/tasproj/TasStateManager.cs @@ -212,7 +212,7 @@ namespace BizHawk.Client.Common private void MaybeRemoveStates() { // Loop, because removing a state that has a duplicate won't save any space - while (Used > Settings.Cap || DiskUsed > (ulong)Settings.DiskCapacitymb * 1024 * 1024) + while (Used + _expectedStateSize > Settings.Cap || DiskUsed > (ulong)Settings.DiskCapacitymb * 1024 * 1024) { Point shouldRemove = StateToRemove(); RemoveState(shouldRemove.X, shouldRemove.Y);