diff options
author | Daniel Stenberg <daniel@haxx.se> | 2002-06-24 14:10:48 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2002-06-24 14:10:48 +0000 |
commit | 5bee7a490fd0e07e11a17b95dbbe6a51e7534c26 (patch) | |
tree | 1a1d395ddb8f3b324b3a9e43521276cf41f7cbc2 /uisimulator/x11/lcd-x11.c | |
parent | 0e2092f5acd93f78d9a35c2a9e6707392024b7a4 (diff) |
added backkight_on(), we should have this change background colour or
something but right now it does nothing
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1157 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'uisimulator/x11/lcd-x11.c')
-rw-r--r-- | uisimulator/x11/lcd-x11.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/uisimulator/x11/lcd-x11.c b/uisimulator/x11/lcd-x11.c index 96ce800c8f..3ea09c3661 100644 --- a/uisimulator/x11/lcd-x11.c +++ b/uisimulator/x11/lcd-x11.c @@ -109,3 +109,8 @@ void lcd_update (void) /* Logf("lcd_update: Draws %d pixels, clears %d pixels", p, cp);*/ XSync(dpy,False); } + +void backlight_on(void) +{ + /* we could do something better here! */ +} |