mark Stella as released

This commit is contained in:
CasualPokePlayer 2024-09-16 01:06:22 -07:00
parent d9b3728365
commit 9b57adfab0
2 changed files with 3 additions and 4 deletions

View File

@ -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)
{

View File

@ -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
{