Nes vrc6: code cleanup, eliminate no longer used parameter. no change in emulation
This commit is contained in:
parent
6ced541abe
commit
f98461772b
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue