This commit is contained in:
adelikat 2020-02-16 18:07:12 -06:00
parent fe3b55f953
commit aa5cd2165b
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum
public bool CanStep(StepType type) => false;
[FeatureNotImplemented]
public void Step(StepType type) => new NotImplementedException();
public void Step(StepType type) => throw new NotImplementedException();
public long TotalExecutedCycles => _cpu.TotalExecutedCycles;
}