Nes vrc6: code cleanup, eliminate no longer used parameter. no change in emulation

This commit is contained in:
nattthebear 2016-03-24 23:14:47 -04:00
parent 6ced541abe
commit f98461772b
2 changed files with 2 additions and 2 deletions

View File

@ -202,7 +202,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES
SyncPRG();
if (NES.apu != null) // don't start up sound when in configurator
VRC6Sound = new VRC6Alt((uint)NES.cpuclockrate, NES.apu.ExternalQueue);
VRC6Sound = new VRC6Alt(NES.apu.ExternalQueue);
return true;
}

View File

@ -19,7 +19,7 @@ namespace BizHawk.Emulation.Cores.Components
/// </summary>
/// <param name="freq">frequency of the M2 clock in hz</param>
/// <param name="enqueuer">a place to dump deltas to</param>
public VRC6Alt(uint freq, Action<int> enqueuer)
public VRC6Alt(Action<int> enqueuer)
{
this.enqueuer = enqueuer;
pulse1 = new Pulse(PulseAddDiff);