mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-08 12:45:26 -05:00
Contrast setting cleanup: * Only include contrast setting for targets where it's used. * Make lcd_default_contrast() a stub for simulators.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10317 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
7136fd9bb6
commit
9051afa8a0
9 changed files with 43 additions and 41 deletions
|
|
@ -53,9 +53,9 @@ void lcd_set_invert_display(bool invert)
|
|||
(void)invert;
|
||||
}
|
||||
|
||||
void lcd_remote_set_invert_display(bool invert)
|
||||
int lcd_default_contrast(void)
|
||||
{
|
||||
(void)invert;
|
||||
return 28;
|
||||
}
|
||||
|
||||
#ifdef HAVE_REMOTE_LCD
|
||||
|
|
@ -76,4 +76,9 @@ void lcd_remote_set_flip(bool yesno)
|
|||
{
|
||||
(void)yesno;
|
||||
}
|
||||
|
||||
void lcd_remote_set_invert_display(bool invert)
|
||||
{
|
||||
(void)invert;
|
||||
}
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue