1
0
Fork 0
forked from len0rd/rockbox

Fix warning in chip8 plugin for simulator builds

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24162 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Bertrik Sikken 2010-01-03 13:20:42 +00:00
parent 92d2874959
commit b75b3e7557

View file

@ -1169,7 +1169,6 @@ static unsigned long cycles; /* Number of update cycles (50Hz) */
#ifndef SIMULATOR
static bool is_playing;
#endif
/* one frame of bitswapped mp3 data */
static unsigned char beep[]={255,
@ -1191,6 +1190,7 @@ static void callback(unsigned char** start, size_t* size)
*start = beep; /* give it the same frame again */
*size = sizeof(beep);
}
#endif /* !SIMULATOR */
/****************************************************************************/
/* Turn sound on */