VRC6: fish crash bug on loading non-VRC6 games in some cases (caused by recent commit)

This commit is contained in:
goyuken 2012-12-10 02:41:54 +00:00
parent fd304e6cb4
commit 5590898c46
1 changed files with 2 additions and 1 deletions
BizHawk.Emulation/Consoles/Nintendo/NES/Boards

View File

@ -30,7 +30,8 @@ namespace BizHawk.Emulation.Consoles.Nintendo
base.Dispose();
prg_banks_8k.Dispose();
chr_banks_1k.Dispose();
VRC6Sound.Dispose();
if (VRC6Sound != null)
VRC6Sound.Dispose();
}
public override void SyncState(Serializer ser)