Forgot this

This commit is contained in:
goyuken 2015-05-18 00:43:23 +00:00
parent 549e9650ae
commit a4469120a5
1 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using BizHawk.Emulation.Common;
namespace BizHawk.Emulation.Cores.Computers.AppleII
{
partial class AppleII : ISyncSoundProvider
{
void ISyncSoundProvider.GetSamples(out short[] samples, out int nsamp)
{
_machine.Speaker.AudioService.GetSamples(out samples, out nsamp);
}
void ISyncSoundProvider.DiscardSamples()
{
_machine.Speaker.AudioService.Clear();
}
}
}