Small settings change
This commit is contained in:
parent
7c82d6d526
commit
d534ee3f5f
|
@ -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" />
|
||||
|
|
|
@ -136,8 +136,8 @@ namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum
|
|||
public enum TapeLoadSpeed
|
||||
{
|
||||
Accurate,
|
||||
Fast,
|
||||
Fastest
|
||||
//Fast,
|
||||
//Fastest
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue