Allow Stella's settings to be edited without the core loaded
This commit is contained in:
parent
59d875aecc
commit
f5dc73086a
|
@ -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<Snes9x>(CoreNames.Snes9X)));
|
||||
|
||||
// Stella
|
||||
items.Add(CreateCoreSubmenu(VSystemCategory.Consoles, CoreNames.Stella, CreateGenericCoreConfigItem<Stella>(CoreNames.Stella)));
|
||||
|
||||
// SubGBHawk
|
||||
items.Add(CreateCoreSubmenu(VSystemCategory.Handhelds, CoreNames.SubGbHawk, CreateSettingsItem("Settings...", (_, _) => OpenSubGBHawkSettingsDialog())));
|
||||
|
||||
|
|
Loading…
Reference in New Issue