diff options
author | Daniel Stenberg <daniel@haxx.se> | 2002-05-30 14:12:31 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2002-05-30 14:12:31 +0000 |
commit | 90f2806656b1c4561919b2f07a438c797146af63 (patch) | |
tree | ca9ca28d367009b9bcccc217775d08896768a513 /uisimulator/x11/lcd-x11.c | |
parent | 565f3b27f2786949183991c078321ab94e98cc70 (diff) |
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/lcd-x11.c')
-rw-r--r-- | uisimulator/x11/lcd-x11.c | 18 |
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) /* Logf("lcd_update: Draws %d pixels, clears %d pixels", p, cp);*/ XSync(dpy,False); } - -#ifdef HAVE_LCD_CHARCELLS -/* simulation layer for charcells */ -void lcd_clear_display(void) -{ - sim_lcd_clear_display(); -} - -void lcd_puts(int x, int y, char *string) -{ - char buffer[12]; - strncpy(buffer, string, 11); - buffer[11]=0; - - sim_lcd_puts(x, y, buffer, 0); - lcd_update(); -} -#endif |