summaryrefslogtreecommitdiff
path: root/apps/plugins/mpegplayer/mpegplayer.c
diff options
context:
space:
mode:
authorTeruaki Kawashima <teru@rockbox.org>2011-01-24 12:29:16 +0000
committerTeruaki Kawashima <teru@rockbox.org>2011-01-24 12:29:16 +0000
commit01313d5039609c34b2b56ec8ba7a3a6c48ddaf3c (patch)
tree3f6e9cf673fac24cc7087b517cdaa0b82ecd463c /apps/plugins/mpegplayer/mpegplayer.c
parentf06f6852733b084a5bd09528322d9ffc6886d2f3 (diff)
downloadrockbox-01313d5039609c34b2b56ec8ba7a3a6c48ddaf3c.tar.gz
rockbox-01313d5039609c34b2b56ec8ba7a3a6c48ddaf3c.zip
* Rename backlight_force_on to backlight_ignore_timeout to make it clear what the function does.
* Add backlight_force_on() which forces to turn on backlight even when the setting is set to Off. use this in lamp. No functional change except lamp. See aslo FS#9883. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29128 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/mpegplayer/mpegplayer.c')
-rw-r--r--apps/plugins/mpegplayer/mpegplayer.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/plugins/mpegplayer/mpegplayer.c b/apps/plugins/mpegplayer/mpegplayer.c
index 5ea17f9a3e..97f648621a 100644
--- a/apps/plugins/mpegplayer/mpegplayer.c
+++ b/apps/plugins/mpegplayer/mpegplayer.c
@@ -822,8 +822,7 @@ static void osd_backlight_on_video_mode(bool video_on)
822{ 822{
823 if (video_on) { 823 if (video_on) {
824 /* Turn off backlight timeout */ 824 /* Turn off backlight timeout */
825 /* backlight control in lib/helper.c */ 825 backlight_ignore_timeout();
826 backlight_force_on();
827#if defined(HAVE_LCD_ENABLE) || defined(HAVE_LCD_SLEEP) 826#if defined(HAVE_LCD_ENABLE) || defined(HAVE_LCD_SLEEP)
828 rb->remove_event(LCD_EVENT_ACTIVATION, osd_lcd_enable_hook); 827 rb->remove_event(LCD_EVENT_ACTIVATION, osd_lcd_enable_hook);
829#endif 828#endif