do not mark C64 as not having ISettable..since it implements it. Group C64.ISettable.cs with C64.cs
This commit is contained in:
parent
ff7db156f6
commit
48080c838f
|
@ -207,7 +207,9 @@
|
||||||
<Compile Include="Computers\Commodore64\C64.IMemoryDomains.cs">
|
<Compile Include="Computers\Commodore64\C64.IMemoryDomains.cs">
|
||||||
<DependentUpon>C64.cs</DependentUpon>
|
<DependentUpon>C64.cs</DependentUpon>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Computers\Commodore64\C64.ISettable.cs" />
|
<Compile Include="Computers\Commodore64\C64.ISettable.cs">
|
||||||
|
<DependentUpon>C64.cs</DependentUpon>
|
||||||
|
</Compile>
|
||||||
<Compile Include="Computers\Commodore64\C64.IStatable.cs">
|
<Compile Include="Computers\Commodore64\C64.IStatable.cs">
|
||||||
<DependentUpon>C64.cs</DependentUpon>
|
<DependentUpon>C64.cs</DependentUpon>
|
||||||
</Compile>
|
</Compile>
|
||||||
|
|
|
@ -1,11 +1,5 @@
|
||||||
using BizHawk.Emulation.Common;
|
using System.ComponentModel;
|
||||||
|
using BizHawk.Emulation.Common;
|
||||||
using Newtonsoft.Json;
|
|
||||||
|
|
||||||
using System;
|
|
||||||
using System.ComponentModel;
|
|
||||||
using System.Drawing;
|
|
||||||
|
|
||||||
|
|
||||||
namespace BizHawk.Emulation.Cores.Computers.Commodore64
|
namespace BizHawk.Emulation.Cores.Computers.Commodore64
|
||||||
{
|
{
|
||||||
|
|
|
@ -13,7 +13,6 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64
|
||||||
"SaxxonPike",
|
"SaxxonPike",
|
||||||
isPorted: false,
|
isPorted: false,
|
||||||
isReleased: false)]
|
isReleased: false)]
|
||||||
[ServiceNotApplicable(typeof(ISettable<,>))]
|
|
||||||
public sealed partial class C64 : IEmulator, IRegionable
|
public sealed partial class C64 : IEmulator, IRegionable
|
||||||
{
|
{
|
||||||
public C64(CoreComm comm, IEnumerable<byte[]> roms, object settings, object syncSettings)
|
public C64(CoreComm comm, IEnumerable<byte[]> roms, object settings, object syncSettings)
|
||||||
|
|
Loading…
Reference in New Issue