diff --git a/src/BizHawk.Emulation.Cores/Computers/Amiga/PUAE.cs b/src/BizHawk.Emulation.Cores/Computers/Amiga/PUAE.cs index 99c0010f2b..cef5e9e87c 100644 --- a/src/BizHawk.Emulation.Cores/Computers/Amiga/PUAE.cs +++ b/src/BizHawk.Emulation.Cores/Computers/Amiga/PUAE.cs @@ -54,7 +54,7 @@ namespace BizHawk.Emulation.Cores.Computers.Amiga [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();