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:
parent
f954a53da5
commit
9529d5fd14
1 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue