Merge TI83 sysIDs
This commit is contained in:
parent
d5fdbaf013
commit
1785d51c1d
|
@ -335,7 +335,7 @@ namespace BizHawk.Emulation.Common
|
|||
break;
|
||||
|
||||
case ".83P":
|
||||
game.System = VSystemID.Raw.TI83P;
|
||||
game.System = VSystemID.Raw.TI83;
|
||||
break;
|
||||
|
||||
case ".DSK":
|
||||
|
|
|
@ -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";
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue