Get rid of unnecessary memory acesses in a loop, gives slight speedup
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14996 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
44f3706b29
commit
1d7912955b
1 changed files with 1 additions and 1 deletions
|
@ -150,7 +150,7 @@ static inline void synthbuf(void)
|
|||
{
|
||||
int32_t *outptr;
|
||||
register int i;
|
||||
static int currentSample=0;
|
||||
int currentSample=0;
|
||||
int synthtemp[2];
|
||||
|
||||
#ifndef SYNC
|
||||
|
|
Loading…
Reference in a new issue