1
0
Fork 0
forked from len0rd/rockbox

Fix midi playback on 64 bit sims and const a table

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14842 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Nils Wallménius 2007-09-24 16:47:34 +00:00
parent 0e49605aaa
commit ff7b3c5e4e
2 changed files with 3 additions and 3 deletions

View file

@ -92,7 +92,7 @@ struct MIDIfile * mf IBSS_ATTR;
int numberOfSamples IBSS_ATTR;
long bpm IBSS_ATTR;
long gmbuf[BUF_SIZE*NBUF];
int32_t gmbuf[BUF_SIZE*NBUF];
int quit=0;
struct plugin_api * rb;
@ -147,7 +147,7 @@ bool lastswap=1;
inline void synthbuf(void)
{
long *outptr;
int32_t *outptr;
register int i;
static int currentSample=0;
int synthtemp[2];