Increase backlight priority to the same level as UI so that there is no longer a long delay when activating it during heavy CPU load.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16543 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Michael Giacomelli 2008-03-07 00:51:36 +00:00
parent 9f77d98c34
commit 2d8cd814ac

View file

@ -600,7 +600,7 @@ void backlight_init(void)
create_thread(backlight_thread, backlight_stack,
sizeof(backlight_stack), 0, backlight_thread_name
IF_PRIO(, PRIORITY_SYSTEM)
IF_PRIO(, PRIORITY_USER_INTERFACE)
IF_COP(, CPU));
tick_add_task(backlight_tick);
}