From 9b57adfab05fd5048bf1c2b02d14af66f060d19a Mon Sep 17 00:00:00 2001
From: CasualPokePlayer <50538166+CasualPokePlayer@users.noreply.github.com>
Date: Mon, 16 Sep 2024 01:06:22 -0700
Subject: [PATCH] mark Stella as released

---
 .../Consoles/Atari/Stella/Stella.ISettable.cs                 | 4 ++--
 src/BizHawk.Emulation.Cores/Consoles/Atari/Stella/Stella.cs   | 3 +--
 2 files changed, 3 insertions(+), 4 deletions(-)

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
 	{