1
0
mirror of https://github.com/gryf/gryf-overlay.git synced 2026-01-04 04:44:13 +01:00
Files
gryf-overlay/media-plugins/eq-xmms/files/eq-xmms-0.6-mono_fix.patch
2010-02-09 21:25:29 +01:00

12 lines
418 B
Diff

--- eq-xmms-0.6/src/iir.c 2004-05-16 06:24:31.000000000 +0400
+++ eq-xmms/src/iir.c 2005-03-22 16:14:58.000000000 +0300
@@ -167,7 +167,7 @@
* the buffer (length is in bytes)
*/
halflength = (length >> 1);
- for (index = 0; index < halflength; index+=2)
+ for (index = 0; index < halflength; index+=nch)
{
/* For each channel */
for (channel = 0; channel < nch; channel++)