Small settings change

This commit is contained in:
Asnivor 2018-02-12 17:22:03 +00:00
parent 7c82d6d526
commit d534ee3f5f
3 changed files with 11 additions and 3 deletions

View File

@ -258,6 +258,14 @@
<Compile Include="Computers\Commodore64\User\UserPortDevice.cs" />
<Compile Include="Computers\SinclairSpectrum\Hardware\AY38912.cs" />
<Compile Include="Computers\SinclairSpectrum\Hardware\Buzzer.cs" />
<Compile Include="Computers\SinclairSpectrum\Hardware\CassetteDevice\CassetteDevice.cs" />
<Compile Include="Computers\SinclairSpectrum\Hardware\CassetteDevice\Datacorder.cs" />
<Compile Include="Computers\SinclairSpectrum\Hardware\CassetteDevice\MicPulseType.cs" />
<Compile Include="Computers\SinclairSpectrum\Hardware\CassetteDevice\PlayPhase.cs" />
<Compile Include="Computers\SinclairSpectrum\Hardware\CassetteDevice\SavePhase.cs" />
<Compile Include="Computers\SinclairSpectrum\Hardware\CassetteDevice\SpectrumTapeHeader.cs" />
<Compile Include="Computers\SinclairSpectrum\Hardware\CassetteDevice\TapeFormat.cs" />
<Compile Include="Computers\SinclairSpectrum\Hardware\CassetteDevice\TapeOperationMode.cs" />
<Compile Include="Computers\SinclairSpectrum\Hardware\DefaultTapeProvider.cs" />
<Compile Include="Computers\SinclairSpectrum\Hardware\Interfaces\IKeyboard.cs" />
<Compile Include="Computers\SinclairSpectrum\Hardware\Interfaces\ISaveToTapeProvider.cs" />

View File

@ -136,8 +136,8 @@ namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum
public enum TapeLoadSpeed
{
Accurate,
Fast,
Fastest
//Fast,
//Fastest
}
}
}

View File

@ -53,7 +53,7 @@ namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum
_cpu.SyncState(ser);
ser.BeginSection("ZXSpectrum");
_cpu.SyncState(ser);
//_cpu.SyncState(ser);
_machine.SyncState(ser);
ser.Sync("Frame", ref _machine.FrameCount);
ser.Sync("LagCount", ref _lagCount);