diff options
| author | Miika Pekkarinen <miipekk@ihme.org> | 2007-01-12 20:26:23 +0000 |
|---|---|---|
| committer | Miika Pekkarinen <miipekk@ihme.org> | 2007-01-12 20:26:23 +0000 |
| commit | 73cd9f3b63718d1fe927e7ef4294ed902e8a1b73 (patch) | |
| tree | 82fc91d5a47c267a8a5a1cdd20aa89b2cd65a079 /apps | |
| parent | 0ea4d3197ed7e56f39c630741cb69152ac9e41de (diff) | |
| download | rockbox-73cd9f3b63718d1fe927e7ef4294ed902e8a1b73.zip rockbox-73cd9f3b63718d1fe927e7ef4294ed902e8a1b73.tar.gz rockbox-73cd9f3b63718d1fe927e7ef4294ed902e8a1b73.tar.bz2 rockbox-73cd9f3b63718d1fe927e7ef4294ed902e8a1b73.tar.xz | |
Turn backlight ON at boot unless bootloader has already done that.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11992 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/main.c b/apps/main.c index 4b0e98c..ccfc68f 100644 --- a/apps/main.c +++ b/apps/main.c @@ -306,6 +306,8 @@ static void init(void) cpu_boost(true); #endif + backlight_init(); + buffer_init(); settings_reset(); @@ -347,8 +349,6 @@ static void init(void) m5636_init(); #endif - backlight_init(); - button_init(); powermgmt_init(); |