Merge TI83 sysIDs

This commit is contained in:
YoshiRulz 2021-11-15 20:54:34 +10:00
parent d5fdbaf013
commit 1785d51c1d
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
3 changed files with 2 additions and 3 deletions

View File

@ -335,7 +335,7 @@ namespace BizHawk.Emulation.Common
break;
case ".83P":
game.System = VSystemID.Raw.TI83P;
game.System = VSystemID.Raw.TI83;
break;
case ".DSK":

View File

@ -54,7 +54,6 @@ namespace BizHawk.Emulation.Common
public const string SMS = "SMS";
public const string SNES = "SNES";
public const string TI83 = "TI83";
public const string TI83P = "TI83P"; //TODO only used for CoreConstructor, SystemId is TI83
public const string UZE = "UZE";
public const string VB = "VB";
public const string VEC = "VEC";

View File

@ -10,7 +10,7 @@ namespace BizHawk.Emulation.Cores.Calculators
[ServiceNotApplicable(new[] { typeof(IBoardInfo), typeof(IDriveLight), typeof(IRegionable), typeof(ISaveRam), typeof(ISoundProvider) })]
public partial class TI83 : IEmulator, IVideoProvider, IDebuggable, IInputPollable, ISettable<TI83.TI83Settings, object>
{
[CoreConstructor(VSystemID.Raw.TI83P)]
[CoreConstructor(VSystemID.Raw.TI83)]
public TI83(CoreLoadParameters<TI83Settings, object> lp)
{
var ser = new BasicServiceProvider(this);