Quicknes - metadata for controller settings, player 2 not plugged in by default

This commit is contained in:
adelikat 2014-11-02 14:03:38 +00:00
parent 2f3f3d29fc
commit f3a2387926
1 changed files with 5 additions and 1 deletions

View File

@ -537,9 +537,13 @@ namespace BizHawk.Emulation.Cores.Consoles.Nintendo.QuickNES
public class QuickNESSyncSettings
{
[DefaultValue(true)]
[DisplayName("Left Port Connected")]
[Description("Specifies whether or not the Left (Player 1) Controller is connected")]
public bool LeftPortConnected { get; set; }
[DefaultValue(true)]
[DefaultValue(false)]
[DisplayName("Right Port Connected")]
[Description("Specifies whether or not the Right (Player 2) Controller is connected")]
public bool RightPortConnected { get; set; }
public QuickNESSyncSettings()