From 950eac5be22b94486f52088edcb2084fa53bf164 Mon Sep 17 00:00:00 2001 From: adelikat Date: Wed, 26 Aug 2020 16:03:29 -0500 Subject: [PATCH] TasStateManager settings - make less aggressive RAM consumption defaults, 512mb total instead of 832mb --- .../movie/tasproj/ZwinderStateManagerSettings.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/BizHawk.Client.Common/movie/tasproj/ZwinderStateManagerSettings.cs b/src/BizHawk.Client.Common/movie/tasproj/ZwinderStateManagerSettings.cs index 4ca00196c5..c1afb91e0c 100644 --- a/src/BizHawk.Client.Common/movie/tasproj/ZwinderStateManagerSettings.cs +++ b/src/BizHawk.Client.Common/movie/tasproj/ZwinderStateManagerSettings.cs @@ -31,11 +31,11 @@ namespace BizHawk.Client.Common [DisplayName("Current - Buffer Size")] [Description("Max amount of buffer space to use in MB")] - public int CurrentBufferSize { get; set; } = 512; + public int CurrentBufferSize { get; set; } = 256; [DisplayName("Current - Target Frame Length")] [Description("Desired frame length (number of emulated frames you can go back before running out of buffer)")] - public int CurrentTargetFrameLength { get; set; } = 1000; + public int CurrentTargetFrameLength { get; set; } = 500; /// /// Buffer settings when navigating directly before the Current buffer @@ -45,11 +45,11 @@ namespace BizHawk.Client.Common [DisplayName("Recent - Buffer Size")] [Description("Max amount of buffer space to use in MB")] - public int RecentBufferSize { get; set; } = 256; + public int RecentBufferSize { get; set; } = 192; [DisplayName("Recent - Target Frame Length")] [Description("Desired frame length (number of emulated frames you can go back before running out of buffer)")] - public int RecentTargetFrameLength { get; set; } = 10000; + public int RecentTargetFrameLength { get; set; } = 2000; /// /// Priority States for special use cases