stop crashing the intellivision core when the emulation menu is opened

This commit is contained in:
zeromus 2012-09-07 05:41:33 +00:00
parent b87af7d429
commit 8eba3fb37c
1 changed files with 9 additions and 1 deletions

View File

@ -96,9 +96,17 @@ namespace BizHawk.Emulation.Consoles.Intellivision
public IVideoProvider VideoProvider { get { return Stic; } }
public ISoundProvider SoundProvider { get { return NullSound.SilenceProvider; } }
public static readonly ControllerDefinition IntellivisionController =
new ControllerDefinition
{
Name = "Intellivision Controller",
BoolButtons = {
}
};
public ControllerDefinition ControllerDefinition
{
get { return null; }
get { return IntellivisionController; }
}
public IController Controller { get; set; }