description typos
This commit is contained in:
parent
d3c5bb4990
commit
2e88ddf3c5
|
@ -45,16 +45,16 @@ namespace BizHawk.Client.Common
|
||||||
/// Buffer settings when navigating directly before the Current buffer
|
/// Buffer settings when navigating directly before the Current buffer
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[DisplayName("Recent - Use Compression")]
|
[DisplayName("Recent - Use Compression")]
|
||||||
[Description("The Recent buffer is the where current frames decay too as the buffer fills up. The goal of this buffer is maximize the amount of movie that can be fairly quickly navigated to. Therefore, a high target frame length is ideal here.")]
|
[Description("The Recent buffer is where the current frames decay as the buffer fills up. The goal of this buffer is to maximize the amount of movie that can be fairly quickly navigated to. Therefore, a high target frame length is ideal here.")]
|
||||||
public bool RecentUseCompression { get; set; }
|
public bool RecentUseCompression { get; set; }
|
||||||
|
|
||||||
[DisplayName("Recent - Buffer Size")]
|
[DisplayName("Recent - Buffer Size")]
|
||||||
[Description("Max amount of buffer space to use in MB.\n\nThe Recent buffer is the where current frames decay too as the buffer fills up. The goal of this buffer is maximize the amount of movie that can be fairly quickly navigated to. Therefore, a high target frame length is ideal here.")]
|
[Description("Max amount of buffer space to use in MB.\n\nThe Recent buffer is where the current frames decay as the buffer fills up. The goal of this buffer is to maximize the amount of movie that can be fairly quickly navigated to. Therefore, a high target frame length is ideal here.")]
|
||||||
[TypeConverter(typeof(IntConverter)), Range(64, 32768)]
|
[TypeConverter(typeof(IntConverter)), Range(64, 32768)]
|
||||||
public int RecentBufferSize { get; set; } = 128;
|
public int RecentBufferSize { get; set; } = 128;
|
||||||
|
|
||||||
[DisplayName("Recent - Target Frame Length")]
|
[DisplayName("Recent - Target Frame Length")]
|
||||||
[Description("Desired frame length (number of emulated frames you can go back before running out of buffer). The Recent buffer is the where current frames decay too as the buffer fills up. The goal of this buffer is maximize the amount of movie that can be fairly quickly navigated to. Therefore, a high target frame length is ideal here.")]
|
[Description("Desired frame length (number of emulated frames you can go back before running out of buffer).\n\nThe Recent buffer is where the current frames decay as the buffer fills up. The goal of this buffer is to maximize the amount of movie that can be fairly quickly navigated to. Therefore, a high target frame length is ideal here.")]
|
||||||
[TypeConverter(typeof(IntConverter)), Range(1, int.MaxValue)]
|
[TypeConverter(typeof(IntConverter)), Range(1, int.MaxValue)]
|
||||||
public int RecentTargetFrameLength { get; set; } = 2000;
|
public int RecentTargetFrameLength { get; set; } = 2000;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue