delete unused "SoundOn" variable from NES core. not sure what the idea was here?

This commit is contained in:
goyuken 2013-12-10 18:05:54 +00:00
parent 18c50a55fe
commit 39ff347483
2 changed files with 0 additions and 2 deletions

View File

@ -3199,7 +3199,6 @@ namespace BizHawk.Client.EmuHawk
{
var nes = new NES(nextComm, game, rom.FileData, Global.MovieSession.Movie.Header.BoardProperties)
{
SoundOn = Global.Config.SoundEnabled,
NTSC_FirstDrawLine = Global.Config.NTSC_NESTopLine,
NTSC_LastDrawLine = Global.Config.NTSC_NESBottomLine,
PAL_FirstDrawLine = Global.Config.PAL_NESTopLine

View File

@ -29,7 +29,6 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES
CartInfo cart; //the current cart prototype. should be moved into the board, perhaps
INESBoard board; //the board hardware that is currently driving things
EDetectionOrigin origin = EDetectionOrigin.None;
public bool SoundOn = true;
int sprdma_countdown;
bool _irq_apu; //various irq signals that get merged to the cpu irq pin
/// <summary>clock speed of the main cpu in hz</summary>