diff --git a/src/BizHawk.Emulation.Cores/Consoles/Atari/Stella/Stella.ISettable.cs b/src/BizHawk.Emulation.Cores/Consoles/Atari/Stella/Stella.ISettable.cs index b84b75c0e3..645da9572d 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Atari/Stella/Stella.ISettable.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Atari/Stella/Stella.ISettable.cs @@ -32,13 +32,13 @@ namespace BizHawk.Emulation.Cores.Atari.Stella [DisplayName("Port 1 Device")] [Description("The type of controller plugged into the first controller port")] [TypeConverter(typeof(DescribableEnumConverter))] - public Atari2600ControllerTypes Port1 { get; set; } = Atari2600ControllerTypes.Joystick; + public Atari2600ControllerTypes Port1 { get; set; } [DefaultValue(Atari2600ControllerTypes.Joystick)] [DisplayName("Port 2 Device")] [Description("The type of controller plugged into the second controller port")] [TypeConverter(typeof(DescribableEnumConverter))] - public Atari2600ControllerTypes Port2 { get; set; } = Atari2600ControllerTypes.Joystick; + public Atari2600ControllerTypes Port2 { get; set; } public CInterface.InitSettings GetNativeSettings(GameInfo game) { diff --git a/src/BizHawk.Emulation.Cores/Consoles/Atari/Stella/Stella.cs b/src/BizHawk.Emulation.Cores/Consoles/Atari/Stella/Stella.cs index 900050d330..e897300217 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Atari/Stella/Stella.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Atari/Stella/Stella.cs @@ -12,8 +12,7 @@ namespace BizHawk.Emulation.Cores.Atari.Stella name: CoreNames.Stella, author: "The Stella Team", // portedVersion: "", //TODO - portedUrl: "https://stella-emu.github.io", - isReleased: false)] + portedUrl: "https://stella-emu.github.io")] [ServiceNotApplicable([ typeof(IDriveLight), typeof(ISaveRam) ])] public partial class Stella : IRomInfo, IRegionable {