uae: implement IRegionable
This commit is contained in:
parent
fe8bc2d227
commit
1e839b8802
|
@ -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;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue