forked from len0rd/rockbox
Patch #5223 by Jonathan Gordon: Turn on the main screen's backlight when using the iriver NON-LCD remote (set the remote backlight to off if you don't want it)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10574 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
5019b32620
commit
d39b79737f
1 changed files with 8 additions and 1 deletions
|
@ -465,7 +465,14 @@ static void remote_backlight_update_state(void)
|
|||
}
|
||||
else
|
||||
{
|
||||
__remote_backlight_on();
|
||||
#if defined(IRIVER_H100_SERIES) || defined(IRIVER_H300_SERIES)
|
||||
if (remote_type() == REMOTETYPE_H300_NONLCD)
|
||||
{
|
||||
backlight_update_state();
|
||||
}
|
||||
else
|
||||
#endif
|
||||
__remote_backlight_on();
|
||||
}
|
||||
}
|
||||
#endif /* HAVE_REMOTE_LCD */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue