diff --git a/src/BizHawk.Emulation.Cores/Computers/Amiga/PUAE.ISettable.cs b/src/BizHawk.Emulation.Cores/Computers/Amiga/PUAE.ISettable.cs index 98bcbc1e16..e35fb28cb6 100644 --- a/src/BizHawk.Emulation.Cores/Computers/Amiga/PUAE.ISettable.cs +++ b/src/BizHawk.Emulation.Cores/Computers/Amiga/PUAE.ISettable.cs @@ -246,7 +246,6 @@ namespace BizHawk.Emulation.Cores.Computers.Amiga if (settings.Region == VideoStandard.NTSC) { AppendSetting("ntsc=true"); - VsyncNumerator = 60; } AppendSetting("input.mouse_speed=" + settings.MouseSpeed); diff --git a/src/BizHawk.Emulation.Cores/Computers/Amiga/PUAE.cs b/src/BizHawk.Emulation.Cores/Computers/Amiga/PUAE.cs index cef5e9e87c..5ca6bc3403 100644 --- a/src/BizHawk.Emulation.Cores/Computers/Amiga/PUAE.cs +++ b/src/BizHawk.Emulation.Cores/Computers/Amiga/PUAE.cs @@ -71,7 +71,7 @@ namespace BizHawk.Emulation.Cores.Computers.Amiga CreateArguments(_syncSettings); ControllerDefinition = CreateControllerDefinition(_syncSettings); - var paue = PreInit(new WaterboxOptions + var puae = PreInit(new WaterboxOptions { Filename = "puae.wbx", SbrkHeapSizeKB = 1024, @@ -108,7 +108,7 @@ namespace BizHawk.Emulation.Cores.Computers.Amiga Console.WriteLine(string.Join(" ", _args)); Console.WriteLine(); - if (!paue.Init(_args.Count, _args.ToArray())) + if (!puae.Init(_args.Count, _args.ToArray())) throw new InvalidOperationException("Core rejected the rom!"); foreach (var f in filesToRemove)