diff --git a/BizHawk.Client.EmuHawk/CustomControls/InputRoll.cs b/BizHawk.Client.EmuHawk/CustomControls/InputRoll.cs index 9d65525698..c29d1cbd68 100644 --- a/BizHawk.Client.EmuHawk/CustomControls/InputRoll.cs +++ b/BizHawk.Client.EmuHawk/CustomControls/InputRoll.cs @@ -37,7 +37,7 @@ namespace BizHawk.Client.EmuHawk // Hiding lag frames (Mainly intended for < 60fps play.) public int LagFramesToHide { get; set; } public bool HideWasLagFrames { get; set; } - private byte[] lagFrames = new byte[100]; // Large enough value that it shouldn't ever need resizing. + private byte[] lagFrames = new byte[256]; // Large enough value that it shouldn't ever need resizing. // apparently not large enough for 4K public bool allowRightClickSelecton { get; set; } public bool letKeysModifySelection { get; set; }