diff options
author | Björn Stenberg <bjorn@haxx.se> | 2002-05-10 14:56:52 +0000 |
---|---|---|
committer | Björn Stenberg <bjorn@haxx.se> | 2002-05-10 14:56:52 +0000 |
commit | c492d24cce70a7a49cc041a9a948f6758e509ef6 (patch) | |
tree | a5232899ae962994e60251b53d5031332db51df8 /uisimulator/x11/lcd-x11.c | |
parent | 71cda11e65cf3d7ea6c9363d9505619508c301ba (diff) |
Adapted to changes in the lcd API.
Added player support to the dir browser.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@541 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'uisimulator/x11/lcd-x11.c')
-rw-r--r-- | uisimulator/x11/lcd-x11.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/uisimulator/x11/lcd-x11.c b/uisimulator/x11/lcd-x11.c index 4d2eb4be54..d454532aa2 100644 --- a/uisimulator/x11/lcd-x11.c +++ b/uisimulator/x11/lcd-x11.c @@ -120,6 +120,7 @@ void lcd_puts(int x, int y, char *string) strncpy(buffer, string, 11); buffer[11]=0; - sim_lcd_puts(x*6, y*8, buffer, 0); + debugf("lcd_puts(%d,%d,%s)\n",x,y,string); + sim_lcd_puts(x, y, buffer, 0); } #endif |