Oops. Fix broken player build

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10183 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Dave Chapman 2006-07-03 22:32:23 +00:00
parent 397eb42dcf
commit de1de96808

View file

@ -153,8 +153,10 @@ bool show_info(void)
screens[i].clear_display();
#ifdef HAVE_LCD_BITMAP
screens[i].puts(0, y, str(LANG_ROCKBOX_INFO));
#endif
}
y = y + 2;
#ifdef HAVE_LCD_BITMAP
y += 2;
#endif
#ifdef HAVE_LCD_CHARCELLS
@ -229,8 +231,10 @@ bool show_info(void)
#endif
}
#if defined(HAVE_LCD_BITMAP) || defined(SIMULATOR)
FOR_NB_SCREENS(i)
screens[i].update();
#endif
/* Wait for a key to be pushed */
key = button_get_w_tmo(HZ*5);