summaryrefslogtreecommitdiff
path: root/uisimulator/x11
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-05-30 14:12:31 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-05-30 14:12:31 +0000
commit90f2806656b1c4561919b2f07a438c797146af63 (patch)
treeca9ca28d367009b9bcccc217775d08896768a513 /uisimulator/x11
parent565f3b27f2786949183991c078321ab94e98cc70 (diff)
downloadrockbox-90f2806656b1c4561919b2f07a438c797146af63.tar.gz
rockbox-90f2806656b1c4561919b2f07a438c797146af63.zip
removed the no longer used code for simulating the player LCD
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@827 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'uisimulator/x11')
-rw-r--r--uisimulator/x11/lcd-x11.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/uisimulator/x11/lcd-x11.c b/uisimulator/x11/lcd-x11.c
index bbec13fc75..d60e2ce0ee 100644
--- a/uisimulator/x11/lcd-x11.c
+++ b/uisimulator/x11/lcd-x11.c
@@ -106,21 +106,3 @@ void lcd_update (void)
106/* Logf("lcd_update: Draws %d pixels, clears %d pixels", p, cp);*/ 106/* Logf("lcd_update: Draws %d pixels, clears %d pixels", p, cp);*/
107 XSync(dpy,False); 107 XSync(dpy,False);
108} 108}
109
110#ifdef HAVE_LCD_CHARCELLS
111/* simulation layer for charcells */
112void lcd_clear_display(void)
113{
114 sim_lcd_clear_display();
115}
116
117void lcd_puts(int x, int y, char *string)
118{
119 char buffer[12];
120 strncpy(buffer, string, 11);
121 buffer[11]=0;
122
123 sim_lcd_puts(x, y, buffer, 0);
124 lcd_update();
125}
126#endif