tastudio: it's never enough, fix #800 (row count cap)

This commit is contained in:
feos 2017-02-15 19:54:45 +03:00
parent 64e4585582
commit 885a57d91e
1 changed files with 1 additions and 1 deletions

View File

@ -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; }