proper paths and setting everywhere inclusion for tic80

This commit is contained in:
CasualPokePlayer 2022-06-16 14:05:43 -07:00
parent 84af66f523
commit 27d945bb04
2 changed files with 5 additions and 0 deletions

View File

@ -54,6 +54,7 @@ namespace BizHawk.Client.Common
[VSystemID.Raw.VEC] = "VEC",
[VSystemID.Raw.O2] = "O2",
[VSystemID.Raw.MSX] = "MSX",
[VSystemID.Raw.TIC80] = "TIC80",
[VSystemID.Raw.UZE] = "UZE",
[VSystemID.Raw.NDS] = "NDS",
[VSystemID.Raw.Sega32X] = "Sega 32X",

View File

@ -26,6 +26,7 @@ using BizHawk.Emulation.Cores.Computers.AppleII;
using BizHawk.Emulation.Cores.Computers.Commodore64;
using BizHawk.Emulation.Cores.Computers.MSX;
using BizHawk.Emulation.Cores.Computers.SinclairSpectrum;
using BizHawk.Emulation.Cores.Computers.TIC80;
using BizHawk.Emulation.Cores.Consoles.Belogic;
using BizHawk.Emulation.Cores.Consoles.ChannelF;
using BizHawk.Emulation.Cores.Consoles.NEC.PCE;
@ -3008,6 +3009,9 @@ namespace BizHawk.Client.EmuHawk
// TI83Hawk
items.Add(CreateCoreSubmenu(VSystemCategory.Other, CoreNames.TI83Hawk, CreateSettingsItem("Palette...", (_, _) => OpenTI83PaletteSettingsDialog(GetSettingsAdapterFor<TI83>()))));
// TIC80
items.Add(CreateCoreSubmenu(VSystemCategory.PCs, CoreNames.TIC80, CreateGenericCoreConfigItem<TIC80>(CoreNames.TIC80)));
// T. S. T.
items.Add(CreateCoreSubmenu(VSystemCategory.Consoles, CoreNames.TST, CreateGenericNymaCoreConfigItem<Tst>(CoreNames.TST, Tst.CachedSettingsInfo)));