Update of /cvsroot/pure-data/externals/zexy/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7611
Modified Files: lpt.c limiter_tilde.c Log Message: bug-fixes
Index: limiter_tilde.c =================================================================== RCS file: /cvsroot/pure-data/externals/zexy/src/limiter_tilde.c,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** limiter_tilde.c 22 Mar 2005 20:58:22 -0000 1.1 --- limiter_tilde.c 13 Apr 2005 17:23:30 -0000 1.2 *************** *** 260,264 **** t_float tresh = dbtorms(treshold);
! if ((limit == 0) && (treshold = 0) && (ratio = 0)) {set_mode(x, COMPRESS); return;}
if (tresh > lim) tresh = lim; --- 260,264 ---- t_float tresh = dbtorms(treshold);
! if ((limit == 0) && (treshold == 0) && (ratio == 0)) {set_mode(x, COMPRESS); return;}
if (tresh > lim) tresh = lim;
Index: lpt.c =================================================================== RCS file: /cvsroot/pure-data/externals/zexy/src/lpt.c,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** lpt.c 22 Mar 2005 20:58:22 -0000 1.1 --- lpt.c 13 Apr 2005 17:23:30 -0000 1.2 *************** *** 72,80 **** static void sys_outb(unsigned char byte, int port) { ! outb(byte, port); } static int sys_inb(int port) { ! inb(port); } # endif /* NT */ --- 72,80 ---- static void sys_outb(unsigned char byte, int port) { ! outb(byte, port); } static int sys_inb(int port) { ! return inb(port); } # endif /* NT */