forked from len0rd/rockbox
Removed warnings.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3058 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
e8e2b2dc84
commit
a33d6b2409
2 changed files with 3 additions and 3 deletions
|
@ -169,7 +169,7 @@ static int lcd_get_free_pat(int ch)
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void xlcd_update()
|
void xlcd_update(void)
|
||||||
{
|
{
|
||||||
int x, y;
|
int x, y;
|
||||||
for (x=0; x<11; x++) {
|
for (x=0; x<11; x++) {
|
||||||
|
@ -308,7 +308,7 @@ void lcd_putc(int x, int y, unsigned short ch)
|
||||||
xlcd_update();
|
xlcd_update();
|
||||||
}
|
}
|
||||||
|
|
||||||
unsigned char lcd_get_locked_pattern()
|
unsigned char lcd_get_locked_pattern(void)
|
||||||
{
|
{
|
||||||
unsigned char pat=1;
|
unsigned char pat=1;
|
||||||
while (pat<LAST_RESERVED_CHAR) {
|
while (pat<LAST_RESERVED_CHAR) {
|
||||||
|
|
|
@ -85,7 +85,7 @@ enum
|
||||||
extern void lcd_define_hw_pattern (int which,char *pattern,int length);
|
extern void lcd_define_hw_pattern (int which,char *pattern,int length);
|
||||||
extern void lcd_define_pattern (int which,char *pattern);
|
extern void lcd_define_pattern (int which,char *pattern);
|
||||||
extern void lcd_double_height (bool on);
|
extern void lcd_double_height (bool on);
|
||||||
unsigned char lcd_get_locked_pattern();
|
unsigned char lcd_get_locked_pattern(void);
|
||||||
void lcd_unlock_pattern(unsigned char pat);
|
void lcd_unlock_pattern(unsigned char pat);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue