The player firmware now autodetects the LCD type. No need for two player versions anymore

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2658 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Linus Nielsen Feltzing 2002-10-15 12:25:57 +00:00
parent 6e0a75c596
commit 0a4b247080
10 changed files with 79 additions and 51 deletions

View file

@ -212,3 +212,13 @@ bool oscillograph(void)
/* does nothing */
return false;
}
void lcd_double_height(bool onoff)
{
(void)onoff;
}
bool has_new_lcd(void)
{
return false;
}