Disabled tape trap auto-stop (this is more trouble than its worth - tzx formats should include 'stopthetape' blocks anyway, and tap files are generally junk and should be discouraged)

This commit is contained in:
Asnivor 2018-03-13 14:08:53 +00:00
parent a7ed14cfe1
commit f612ae043b
1 changed files with 2 additions and 7 deletions

View File

@ -614,15 +614,10 @@ namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum
{
_monitorTimeOut--;
if (_monitorTimeOut < 2)
{
}
if (_monitorTimeOut < 0)
{
Stop();
_machine.Spectrum.OSD_TapeStoppedAuto();
//Stop();
//_machine.Spectrum.OSD_TapeStoppedAuto();
}
}
}