From 9be282789b93e0db938bb46155e2cfc603684785 Mon Sep 17 00:00:00 2001 From: goyuken Date: Sat, 6 Oct 2012 16:56:46 +0000 Subject: [PATCH] add DisplayType to NES. fixed to NTSC as that's all that our NES core supports at the moment --- BizHawk.Emulation/Consoles/Nintendo/NES/NES.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/BizHawk.Emulation/Consoles/Nintendo/NES/NES.cs b/BizHawk.Emulation/Consoles/Nintendo/NES/NES.cs index 815ae15555..160af64292 100644 --- a/BizHawk.Emulation/Consoles/Nintendo/NES/NES.cs +++ b/BizHawk.Emulation/Consoles/Nintendo/NES/NES.cs @@ -135,6 +135,8 @@ namespace BizHawk.Emulation.Consoles.Nintendo public CoreInputComm CoreInputComm { get; set; } public CoreOutputComm CoreOutputComm { get; private set; } + public DisplayType DisplayType { get { return BizHawk.DisplayType.NTSC; } } + class MyVideoProvider : IVideoProvider { public int top = 8;