Fix player sim yellow
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28725 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
ac3a7458a8
commit
0f274ac852
2 changed files with 6 additions and 2 deletions
|
@ -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;
|
||||
|
|
|
@ -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__ */
|
||||
|
|
Loading…
Reference in a new issue