mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-03-12 22:56:52 +01:00
unused sample
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@460 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
5af15b6fd3
commit
0882a71e56
@ -61,7 +61,6 @@ void Mixer(short *buffer, int numSamples, int bits, int rate, int channels)
|
||||
int count = 0;
|
||||
while (sample_queue.size() && count < numSamples * 2) {
|
||||
int x = buffer[count];
|
||||
short sample = sample_queue.front();
|
||||
x += sample_queue.front();
|
||||
if (x > 32767) x = 32767;
|
||||
if (x < -32767) x = -32767;
|
||||
|
Loading…
x
Reference in New Issue
Block a user