1
0
Fork 0
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:
Hristo Kovachev 2006-08-15 07:06:53 +00:00
parent 5019b32620
commit d39b79737f

View file

@ -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 */