D2: Notify the backlight driver when the HOLD button is toggled. Fixes FS#10451.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22007 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Rob Purchase 2009-07-22 22:59:08 +00:00
parent 9f828fd522
commit 07a6aac401

View file

@ -103,9 +103,22 @@ int button_read_device(int *data)
{
int btn = BUTTON_NONE;
int adc;
*data = 0;
static bool hold_button = false;
bool hold_button_old;
if (button_hold()) return BUTTON_NONE;
*data = 0;
hold_button_old = hold_button;
hold_button = button_hold();
#ifndef BOOTLOADER
if (hold_button != hold_button_old)
backlight_hold_changed(hold_button);
#endif
if (hold_button)
return BUTTON_NONE;
if (GPIOB & 0x4)
{