2017-04-19 14:41:52 +00:00
|
|
|
|
using BizHawk.Emulation.Common;
|
|
|
|
|
|
|
|
|
|
namespace BizHawk.Emulation.Cores.Nintendo.SNES
|
|
|
|
|
{
|
|
|
|
|
public partial class LibsnesCore : IRegionable
|
|
|
|
|
{
|
|
|
|
|
public DisplayType Region
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
2017-04-19 17:19:16 +00:00
|
|
|
|
if (Api.Region == LibsnesApi.SNES_REGION.NTSC)
|
2017-04-19 14:41:52 +00:00
|
|
|
|
{
|
|
|
|
|
return DisplayType.NTSC;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return DisplayType.PAL;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|