diff --git a/src/BizHawk.Emulation.Cores/Computers/Amiga/UAE.IRegionable.cs b/src/BizHawk.Emulation.Cores/Computers/Amiga/UAE.IRegionable.cs new file mode 100644 index 0000000000..642161bc65 --- /dev/null +++ b/src/BizHawk.Emulation.Cores/Computers/Amiga/UAE.IRegionable.cs @@ -0,0 +1,11 @@ +using BizHawk.Emulation.Common; + +namespace BizHawk.Emulation.Cores.Computers.Amiga +{ + public partial class UAE : IRegionable + { + public DisplayType Region => _syncSettings.Region is VideoStandard.NTSC + ? DisplayType.NTSC + : DisplayType.PAL; + } +}