diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2002-04-11 12:40:18 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2002-04-11 12:40:18 +0000 |
| commit | defbca5a403b13338d56eb8e13d94216ef3fee63 (patch) | |
| tree | b2be7ec29f97be958cd4650c7600f8b401e3b9b3 | |
| parent | eb2072507dd51c634ab7abef2c25bc61161e08fd (diff) | |
| download | rockbox-defbca5a403b13338d56eb8e13d94216ef3fee63.zip rockbox-defbca5a403b13338d56eb8e13d94216ef3fee63.tar.gz rockbox-defbca5a403b13338d56eb8e13d94216ef3fee63.tar.bz2 rockbox-defbca5a403b13338d56eb8e13d94216ef3fee63.tar.xz | |
adjusted to new API
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@80 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | uisimulator/uibasic.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/uisimulator/uibasic.c b/uisimulator/uibasic.c index 979491e..35b4b2d 100644 --- a/uisimulator/uibasic.c +++ b/uisimulator/uibasic.c @@ -33,7 +33,6 @@ #include "version.h" -#include "lcd.h" #include "lcd-x11.h" #define MAX(x,y) ((x)>(y)?(x):(y)) @@ -224,11 +223,11 @@ screenhack (Display *the_dpy, Window the_window) Logf("Rockbox will kill ya!"); - lcd_position(0, 6); - lcd_string( "Rock the box", 0); + lcd_position(0, 6, 0); + lcd_string( "Rock the box"); - lcd_position(8, 24); - lcd_string( "Roolz", 0); + lcd_position(8, 24, 0); + lcd_string( "Roolz" ); lcd_update(); |