GBHawk: another audio fix, not sure where the root cause is
This commit is contained in:
parent
123df38731
commit
5ce8c8790c
|
@ -156,7 +156,9 @@ namespace BizHawk.Client.EmuHawk
|
|||
public void WriteSamples(short[] samples, int sampleCount)
|
||||
{
|
||||
if (sampleCount == 0) return;
|
||||
_deviceBuffer.Write(samples, 0, sampleCount * Sound.ChannelCount, _actualWriteOffsetBytes, LockFlags.None);
|
||||
int total = sampleCount * Sound.ChannelCount;
|
||||
if (total > samples.Length) { total = samples.Length; }
|
||||
_deviceBuffer.Write(samples, 0, total, _actualWriteOffsetBytes, LockFlags.None);
|
||||
_actualWriteOffsetBytes = (_actualWriteOffsetBytes + (sampleCount * Sound.BlockAlign)) % BufferSizeBytes;
|
||||
_filledBufferSizeBytes += sampleCount * Sound.BlockAlign;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue