summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-06-24 14:10:48 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-06-24 14:10:48 +0000
commit5bee7a490fd0e07e11a17b95dbbe6a51e7534c26 (patch)
tree1a1d395ddb8f3b324b3a9e43521276cf41f7cbc2
parent0e2092f5acd93f78d9a35c2a9e6707392024b7a4 (diff)
downloadrockbox-5bee7a490fd0e07e11a17b95dbbe6a51e7534c26.tar.gz
rockbox-5bee7a490fd0e07e11a17b95dbbe6a51e7534c26.zip
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
-rw-r--r--uisimulator/x11/lcd-x11.c5
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)
109/* Logf("lcd_update: Draws %d pixels, clears %d pixels", p, cp);*/ 109/* Logf("lcd_update: Draws %d pixels, clears %d pixels", p, cp);*/
110 XSync(dpy,False); 110 XSync(dpy,False);
111} 111}
112
113void backlight_on(void)
114{
115 /* we could do something better here! */
116}