summaryrefslogtreecommitdiff
path: root/apps/main.c
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2007-03-07 14:49:20 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2007-03-07 14:49:20 +0000
commita844a1833766d45acee28d37ffd0acc938be0fbd (patch)
tree0339238221bd9a96ed9628dc8055852930c97240 /apps/main.c
parent1005195cb65ae6a58c7f0cbe2af8ce8639c5542e (diff)
downloadrockbox-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
Diffstat (limited to 'apps/main.c')
-rw-r--r--apps/main.c4
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)
311 cpu_boost(true); 311 cpu_boost(true);
312#endif 312#endif
313 313
314 backlight_init();
315
316 buffer_init(); 314 buffer_init();
317 315
318 settings_reset(); 316 settings_reset();
@@ -359,6 +357,8 @@ static void init(void)
359 m5636_init(); 357 m5636_init();
360#endif 358#endif
361 359
360 backlight_init();
361
362 button_init(); 362 button_init();
363 363
364 powermgmt_init(); 364 powermgmt_init();