From 0e01f7648ad167655a96c082b4a461a1a13cdbe8 Mon Sep 17 00:00:00 2001 From: feos Date: Sun, 9 Jun 2024 00:10:52 +0300 Subject: [PATCH] fix --- src/BizHawk.Emulation.Cores/Computers/Amiga/LibPUAE.cs | 2 +- src/BizHawk.Emulation.Cores/Computers/Amiga/PUAE.ISettable.cs | 2 -- src/BizHawk.Emulation.Cores/Computers/Amiga/PUAE.cs | 4 +--- 3 files changed, 2 insertions(+), 6 deletions(-) diff --git a/src/BizHawk.Emulation.Cores/Computers/Amiga/LibPUAE.cs b/src/BizHawk.Emulation.Cores/Computers/Amiga/LibPUAE.cs index dfee97af38e..a577c8f0a58 100644 --- a/src/BizHawk.Emulation.Cores/Computers/Amiga/LibPUAE.cs +++ b/src/BizHawk.Emulation.Cores/Computers/Amiga/LibPUAE.cs @@ -29,7 +29,7 @@ public abstract class LibPUAE : LibWaterboxCore public struct KeyBuffer { public unsafe fixed byte Buffer[LibPUAE.KEY_COUNT]; - }; + } } [Flags] diff --git a/src/BizHawk.Emulation.Cores/Computers/Amiga/PUAE.ISettable.cs b/src/BizHawk.Emulation.Cores/Computers/Amiga/PUAE.ISettable.cs index f1149c041f5..ab09719ffff 100644 --- a/src/BizHawk.Emulation.Cores/Computers/Amiga/PUAE.ISettable.cs +++ b/src/BizHawk.Emulation.Cores/Computers/Amiga/PUAE.ISettable.cs @@ -1,8 +1,6 @@ using System; -using System.Collections.Generic; using System.ComponentModel; using System.ComponentModel.DataAnnotations; -using System.Text; using BizHawk.Common; using BizHawk.Emulation.Common; diff --git a/src/BizHawk.Emulation.Cores/Computers/Amiga/PUAE.cs b/src/BizHawk.Emulation.Cores/Computers/Amiga/PUAE.cs index 40e639d8bd3..53d4e87bb75 100644 --- a/src/BizHawk.Emulation.Cores/Computers/Amiga/PUAE.cs +++ b/src/BizHawk.Emulation.Cores/Computers/Amiga/PUAE.cs @@ -1,13 +1,11 @@ using BizHawk.Common; using BizHawk.Common.CollectionExtensions; -using BizHawk.Common.ReflectionExtensions; using BizHawk.Common.StringExtensions; using BizHawk.Emulation.Common; using BizHawk.Emulation.Cores.Waterbox; using System; using System.Collections.Generic; -using static BizHawk.Emulation.Cores.Computers.Amiga.PUAE; namespace BizHawk.Emulation.Cores.Computers.Amiga { @@ -169,7 +167,7 @@ private static List CreateArguments(PUAESyncSettings settings) if (settings.FastMemory != FASTMEM_AUTO) { - args.AddRange(new List { "-s", "fastmem_size=" + (int)settings.FastMemory }); + args.AddRange(new List { "-s", "fastmem_size=" + settings.FastMemory }); } return args;