1
0
Fork 0
forked from len0rd/rockbox

Added stubs that shall not be in the player simulator.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2733 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Kjell Ericson 2002-10-21 20:16:14 +00:00
parent d317ddb333
commit d19b9edfa4

View file

@ -175,3 +175,15 @@ void mpeg_set_pitch(int pitch)
{ {
(void)pitch; (void)pitch;
} }
#ifdef HAVE_LCD_CHARCELLS
void lcd_clearrect (int x, int y, int nx, int ny)
{
/* Reprint char if you want to change anything */
}
void lcd_fillrect (int x, int y, int nx, int ny)
{
/* Reprint char if you want to change display anything */
}
#endif