Fix player sim yellow

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28725 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Thomas Martitz 2010-12-02 21:31:38 +00:00
parent ac3a7458a8
commit 0f274ac852
2 changed files with 6 additions and 2 deletions

View file

@ -539,7 +539,7 @@ static unsigned char font_player_oldlcd[256][7] = {
unsigned char (*font_player)[256][7] = &font_player_newlcd;
void font_init()
void font_init(void)
{
if (is_new_player())
font_player = &font_player_newlcd;

View file

@ -17,7 +17,11 @@
*
****************************************************************************/
#ifndef __FONT_PLAYER_H__
#define __FONT_PLAYER_H__
extern unsigned char (*font_player)[256][7];
void font_init();
void font_init(void);
#endif /* __FONT_PLAYER_H__ */