forked from len0rd/rockbox
Made mp3entry a struct, not a type
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1182 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
f224f0b8e8
commit
ef15d9983a
4 changed files with 9 additions and 11 deletions
|
|
@ -42,7 +42,7 @@
|
|||
void playtune(char *filename)
|
||||
{
|
||||
static char mfile[256];
|
||||
mp3entry mp3;
|
||||
struct mp3entry mp3;
|
||||
bool good=1;
|
||||
#ifdef HAVE_LCD_BITMAP
|
||||
char buffer[256];
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
/* demonstrates showing different formats from playtune */
|
||||
void wps_show_play(char* filename)
|
||||
{
|
||||
mp3entry mp3;
|
||||
struct mp3entry mp3;
|
||||
mp3info(&mp3,filename);
|
||||
|
||||
switch ( global_settings.wps_display ) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue