diff options
author | Linus Nielsen Feltzing <linus@haxx.se> | 2007-03-07 14:49:20 +0000 |
---|---|---|
committer | Linus Nielsen Feltzing <linus@haxx.se> | 2007-03-07 14:49:20 +0000 |
commit | a844a1833766d45acee28d37ffd0acc938be0fbd (patch) | |
tree | 0339238221bd9a96ed9628dc8055852930c97240 | |
parent | 1005195cb65ae6a58c7f0cbe2af8ce8639c5542e (diff) | |
download | rockbox-a844a1833766d45acee28d37ffd0acc938be0fbd.tar.gz rockbox-a844a1833766d45acee28d37ffd0acc938be0fbd.zip |
Removed the LCD/backlight glitch when starting Rockbox on mainly the color LCD targets
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12672 a1c6a512-1295-4272-9138-f99709370657
-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 e4d90bce61..a1ea75fdc3 100644 --- a/apps/main.c +++ b/apps/main.c @@ -311,8 +311,6 @@ static void init(void) cpu_boost(true); #endif - backlight_init(); - buffer_init(); settings_reset(); @@ -359,6 +357,8 @@ static void init(void) m5636_init(); #endif + backlight_init(); + button_init(); powermgmt_init(); |