fix NES NT\PPU view for previous revision

This commit is contained in:
goyuken 2014-12-31 17:43:40 +00:00
parent d1caf79a56
commit bdf6a58e2c
2 changed files with 8 additions and 2 deletions

View File

@ -246,7 +246,10 @@ namespace BizHawk.Client.EmuHawk
private void NESNameTableViewer_FormClosed(object sender, FormClosedEventArgs e)
{
_ppu.RemoveCallback1();
if (_ppu != null)
{
_ppu.RemoveCallback1();
}
}
private void ScanlineTextbox_TextChanged(object sender, EventArgs e)

View File

@ -799,7 +799,10 @@ namespace BizHawk.Client.EmuHawk
private void NesPPU_FormClosed(object sender, FormClosedEventArgs e)
{
_ppu.RemoveCallback2();
if (_ppu != null)
{
_ppu.RemoveCallback2();
}
}
#endregion