Removed warnings.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2739 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
f179453524
commit
08cbf69e0e
1 changed files with 8 additions and 0 deletions
|
@ -180,10 +180,18 @@ void mpeg_set_pitch(int pitch)
|
|||
void lcd_clearrect (int x, int y, int nx, int ny)
|
||||
{
|
||||
/* Reprint char if you want to change anything */
|
||||
(void)x;
|
||||
(void)y;
|
||||
(void)nx;
|
||||
(void)ny;
|
||||
}
|
||||
|
||||
void lcd_fillrect (int x, int y, int nx, int ny)
|
||||
{
|
||||
/* Reprint char if you want to change display anything */
|
||||
(void)x;
|
||||
(void)y;
|
||||
(void)nx;
|
||||
(void)ny;
|
||||
}
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue