The c200 didn't got in for some reason.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20332 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Thomas Martitz 2009-03-17 02:49:26 +00:00
parent b7739fbf1c
commit 68f9ef2d57

View file

@ -195,16 +195,16 @@ void lcd_enable(bool yesno)
if (yesno == is_lcd_enabled)
return;
if (yesno)
if (is_lcd_enabled = yesno)
{
lcd_send_command(R_STANDBY_OFF);
lcd_send_command(R_DISPLAY_ON);
lcd_activation_call_hook();
}
else
{
lcd_send_command(R_STANDBY_ON);
}
is_lcd_enabled = yesno;
}
bool lcd_enabled(void)