Even if no samples are currently needed for writing out to the DirectSound buffer, we still must request 0 samples from BufferedAsync so that it can queue up samples from its base sound provider.
This commit is contained in:
parent
33c6446fe2
commit
1862ddd927
|
@ -218,8 +218,6 @@ namespace BizHawk.Client.EmuHawk
|
|||
}
|
||||
else if (asyncsoundProvider != null)
|
||||
{
|
||||
if (samplesNeeded == 0)
|
||||
return;
|
||||
samples = new short[samplesNeeded];
|
||||
//if (asyncsoundProvider != null && Muted == false)
|
||||
//{
|
||||
|
@ -227,6 +225,8 @@ namespace BizHawk.Client.EmuHawk
|
|||
semisync.GetSamples(samples);
|
||||
//}
|
||||
//else asyncsoundProvider.DiscardSamples();
|
||||
if (samplesNeeded == 0)
|
||||
return;
|
||||
samplesProvided = samplesNeeded;
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Reference in New Issue