1
0
Fork 0
forked from len0rd/rockbox

Fix red/yellow round #2

Change-Id: Ife25eac11fc6f6cedeca8f3fa59536bce0efe2cd
This commit is contained in:
Marcin Bukat 2015-01-12 13:25:14 +01:00
parent 3d983866a1
commit 200ca66963
3 changed files with 4 additions and 4 deletions

View file

@ -390,9 +390,9 @@ void main(void)
if ( hold != last_hold )
{
if ( hold )
_backlight_hw_off();
backlight_hw_off();
else
_backlight_hw_on();
backlight_hw_on();
last_hold = hold;
}