1
0
Fork 0
forked from len0rd/rockbox

Stop mixing signed and unsigned when dealing with audio

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8876 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Peter D'Hoye 2006-03-01 21:27:05 +00:00
parent f954a53da5
commit 9529d5fd14

View file

@ -381,9 +381,9 @@ static void pcmrec_callback(bool flush) __attribute__ ((section (".icode")));
static void pcmrec_callback(bool flush)
{
int num_ready, num_free, num_new;
unsigned short *ptr;
int i, j, w;
short *ptr;
short value;
int i, j, w;
w = write_index;