From f5dc73086af5659efdd37a9f6480d050246dba05 Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Tue, 11 Feb 2025 21:11:00 +1000 Subject: [PATCH] Allow Stella's settings to be edited without the core loaded --- src/BizHawk.Client.EmuHawk/MainForm.VSystem.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/BizHawk.Client.EmuHawk/MainForm.VSystem.cs b/src/BizHawk.Client.EmuHawk/MainForm.VSystem.cs index 4cc5fe87a6..b6b1e9b417 100644 --- a/src/BizHawk.Client.EmuHawk/MainForm.VSystem.cs +++ b/src/BizHawk.Client.EmuHawk/MainForm.VSystem.cs @@ -12,6 +12,7 @@ using BizHawk.Emulation.Cores.Atari.A7800Hawk; using BizHawk.Emulation.Cores.Atari.Atari2600; using BizHawk.Emulation.Cores.Atari.Jaguar; using BizHawk.Emulation.Cores.Atari.Lynx; +using BizHawk.Emulation.Cores.Atari.Stella; using BizHawk.Emulation.Cores.Calculators.Emu83; using BizHawk.Emulation.Cores.Calculators.TI83; using BizHawk.Emulation.Cores.ColecoVision; @@ -1362,6 +1363,9 @@ namespace BizHawk.Client.EmuHawk // Snes9x items.Add(CreateCoreSubmenu(VSystemCategory.Consoles, CoreNames.Snes9X, CreateGenericCoreConfigItem(CoreNames.Snes9X))); + // Stella + items.Add(CreateCoreSubmenu(VSystemCategory.Consoles, CoreNames.Stella, CreateGenericCoreConfigItem(CoreNames.Stella))); + // SubGBHawk items.Add(CreateCoreSubmenu(VSystemCategory.Handhelds, CoreNames.SubGbHawk, CreateSettingsItem("Settings...", (_, _) => OpenSubGBHawkSettingsDialog())));