1
0
Fork 0
forked from len0rd/rockbox

Remove an #ifdef SIMULATOR in favor of using a stub

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20853 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Thomas Martitz 2009-05-05 08:43:32 +00:00
parent 16908adafe
commit b2b3f39403
3 changed files with 6 additions and 2 deletions

View file

@ -30,6 +30,11 @@ extern void lcd_awake(void);
/* in uisimulator/sdl/lcd-bitmap.c and lcd-charcell.c */
extern void sim_backlight(int value);
bool _backlight_init(void)
{
return true;
}
void _backlight_on(void)
{
sim_backlight(100);

View file

@ -24,6 +24,7 @@
#include "config.h"
bool _backlight_init(void);
void _backlight_on(void);
void _backlight_off(void);