do not mark C64 as not having ISettable..since it implements it. Group C64.ISettable.cs with C64.cs

This commit is contained in:
adelikat 2017-05-12 14:32:56 -05:00
parent ff7db156f6
commit 48080c838f
3 changed files with 5 additions and 10 deletions

View File

@ -207,7 +207,9 @@
<Compile Include="Computers\Commodore64\C64.IMemoryDomains.cs">
<DependentUpon>C64.cs</DependentUpon>
</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">
<DependentUpon>C64.cs</DependentUpon>
</Compile>

View File

@ -1,11 +1,5 @@
using BizHawk.Emulation.Common;
using Newtonsoft.Json;
using System;
using System.ComponentModel;
using System.Drawing;
using System.ComponentModel;
using BizHawk.Emulation.Common;
namespace BizHawk.Emulation.Cores.Computers.Commodore64
{

View File

@ -13,7 +13,6 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64
"SaxxonPike",
isPorted: false,
isReleased: false)]
[ServiceNotApplicable(typeof(ISettable<,>))]
public sealed partial class C64 : IEmulator, IRegionable
{
public C64(CoreComm comm, IEnumerable<byte[]> roms, object settings, object syncSettings)