quicknes settings beautification

This commit is contained in:
goyuken 2014-07-19 18:45:20 +00:00
parent 3b0716dd38
commit 6d551ffb62
1 changed files with 3 additions and 0 deletions

View File

@ -391,6 +391,7 @@ namespace BizHawk.Emulation.Cores.Consoles.Nintendo.QuickNES
{
[DefaultValue(8)]
[Description("Set the number of sprites visible per line. 0 hides all sprites, 8 behaves like a normal NES, and 64 is maximum.")]
[DisplayName("Visbile Sprites")]
public int NumSprites
{
get { return _NumSprites; }
@ -401,10 +402,12 @@ namespace BizHawk.Emulation.Cores.Consoles.Nintendo.QuickNES
[DefaultValue(false)]
[Description("Clip the left and right 8 pixels of the display, which sometimes contain nametable garbage.")]
[DisplayName("Clip Left and Right")]
public bool ClipLeftAndRight { get; set; }
[DefaultValue(false)]
[Description("Clip the top and bottom 8 pixels of the display, which sometimes contain nametable garbage.")]
[DisplayName("Clip Top and Bottom")]
public bool ClipTopAndBottom { get; set; }
[Browsable(false)]