Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
vadosnaprimer committed Jun 8, 2024
1 parent 790d097 commit 0e01f76
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/BizHawk.Emulation.Cores/Computers/Amiga/LibPUAE.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public abstract class LibPUAE : LibWaterboxCore
public struct KeyBuffer
{
public unsafe fixed byte Buffer[LibPUAE.KEY_COUNT];
};
}
}

[Flags]
Expand Down
2 changes: 0 additions & 2 deletions src/BizHawk.Emulation.Cores/Computers/Amiga/PUAE.ISettable.cs
Original file line number Diff line number Diff line change
@@ -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;
Expand Down
4 changes: 1 addition & 3 deletions src/BizHawk.Emulation.Cores/Computers/Amiga/PUAE.cs
Original file line number Diff line number Diff line change
@@ -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
{
Expand Down Expand Up @@ -169,7 +167,7 @@ private static List<string> CreateArguments(PUAESyncSettings settings)

if (settings.FastMemory != FASTMEM_AUTO)
{
args.AddRange(new List<string> { "-s", "fastmem_size=" + (int)settings.FastMemory });
args.AddRange(new List<string> { "-s", "fastmem_size=" + settings.FastMemory });
}

return args;
Expand Down

0 comments on commit 0e01f76

Please sign in to comment.