diff --git a/src/BizHawk.Emulation.Cores/Computers/Amiga/PUAE.cs b/src/BizHawk.Emulation.Cores/Computers/Amiga/PUAE.cs index 99c0010f2b3..cef5e9e87c9 100644 --- a/src/BizHawk.Emulation.Cores/Computers/Amiga/PUAE.cs +++ b/src/BizHawk.Emulation.Cores/Computers/Amiga/PUAE.cs @@ -54,7 +54,7 @@ public partial class PUAE : WaterboxCore [CoreConstructor(VSystemID.Raw.Amiga)] public PUAE(CoreLoadParameters lp) - : base(lp.Comm, lp.SyncSettings.Region is VideoStandard.PAL ? ConfigPAL : ConfigNTSC) + : base(lp.Comm, lp.SyncSettings?.Region is VideoStandard.NTSC ? ConfigNTSC : ConfigPAL) { _roms = lp.Roms; _syncSettings = lp.SyncSettings ?? new();