From aa5cd2165b5224622767d8795e8a4c0783517766 Mon Sep 17 00:00:00 2001 From: adelikat Date: Sun, 16 Feb 2020 18:07:12 -0600 Subject: [PATCH] and oops --- .../Computers/SinclairSpectrum/ZXSpectrum.IDebuggable.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/ZXSpectrum.IDebuggable.cs b/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/ZXSpectrum.IDebuggable.cs index eeb5c836ce..76ffe90e97 100644 --- a/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/ZXSpectrum.IDebuggable.cs +++ b/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/ZXSpectrum.IDebuggable.cs @@ -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; }