From 882bab228fcec9983670b58a5f90f0deb2c09443 Mon Sep 17 00:00:00 2001 From: Morilli <35152647+Morilli@users.noreply.github.com> Date: Mon, 7 Oct 2024 00:16:49 +0200 Subject: [PATCH] fix for CI --- .../Computers/AmstradCPC/AmstradCPC.cs | 3 +-- .../Computers/AmstradCPC/Hardware/LibFz80.cs | 11 ++++------- 2 files changed, 5 insertions(+), 9 deletions(-) diff --git a/src/BizHawk.Emulation.Cores/Computers/AmstradCPC/AmstradCPC.cs b/src/BizHawk.Emulation.Cores/Computers/AmstradCPC/AmstradCPC.cs index f149ccb9c4..0208cdcdbe 100644 --- a/src/BizHawk.Emulation.Cores/Computers/AmstradCPC/AmstradCPC.cs +++ b/src/BizHawk.Emulation.Cores/Computers/AmstradCPC/AmstradCPC.cs @@ -4,7 +4,6 @@ using System.Linq; using BizHawk.Common; using BizHawk.Emulation.Common; -//using BizHawk.Emulation.Cores.Components.Z80A; using BizHawk.Emulation.Cores.Properties; namespace BizHawk.Emulation.Cores.Computers.AmstradCPC @@ -98,7 +97,7 @@ namespace BizHawk.Emulation.Cores.Computers.AmstradCPC //private readonly Z80A _cpu; private readonly LibFz80Wrapper _cpu; - private readonly TraceBuffer _tracer; + // private readonly TraceBuffer _tracer; public IController _controller; public CPCBase _machine; diff --git a/src/BizHawk.Emulation.Cores/Computers/AmstradCPC/Hardware/LibFz80.cs b/src/BizHawk.Emulation.Cores/Computers/AmstradCPC/Hardware/LibFz80.cs index 1d82d4198e..14ce41582f 100644 --- a/src/BizHawk.Emulation.Cores/Computers/AmstradCPC/Hardware/LibFz80.cs +++ b/src/BizHawk.Emulation.Cores/Computers/AmstradCPC/Hardware/LibFz80.cs @@ -1,12 +1,9 @@ -using BizHawk.Common; -using BizHawk.Emulation.Common; -using BizHawk.Emulation.Cores.Nintendo.NES; -using SDL2; -using System.Collections.Generic; +using System.Collections.Generic; using System.Runtime.InteropServices; -using static BizHawk.Common.Shell32Imports.BROWSEINFOW; -using System.Security.Cryptography; + +using BizHawk.Common; using BizHawk.Common.NumberExtensions; +using BizHawk.Emulation.Common; namespace BizHawk.Emulation.Cores.Computers.AmstradCPC {