unused sample

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@460 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
nakeee 2008-09-07 14:05:47 +00:00
parent 5af15b6fd3
commit 0882a71e56
1 changed files with 0 additions and 1 deletions

View File

@ -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;