summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-04-11 12:40:18 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-04-11 12:40:18 +0000
commitdefbca5a403b13338d56eb8e13d94216ef3fee63 (patch)
treeb2be7ec29f97be958cd4650c7600f8b401e3b9b3
parenteb2072507dd51c634ab7abef2c25bc61161e08fd (diff)
downloadrockbox-defbca5a403b13338d56eb8e13d94216ef3fee63.tar.gz
rockbox-defbca5a403b13338d56eb8e13d94216ef3fee63.zip
adjusted to new API
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@80 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--uisimulator/uibasic.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/uisimulator/uibasic.c b/uisimulator/uibasic.c
index 979491e731..35b4b2d0f2 100644
--- a/uisimulator/uibasic.c
+++ b/uisimulator/uibasic.c
@@ -33,7 +33,6 @@
33 33
34#include "version.h" 34#include "version.h"
35 35
36#include "lcd.h"
37#include "lcd-x11.h" 36#include "lcd-x11.h"
38 37
39#define MAX(x,y) ((x)>(y)?(x):(y)) 38#define MAX(x,y) ((x)>(y)?(x):(y))
@@ -224,11 +223,11 @@ screenhack (Display *the_dpy, Window the_window)
224 223
225 Logf("Rockbox will kill ya!"); 224 Logf("Rockbox will kill ya!");
226 225
227 lcd_position(0, 6); 226 lcd_position(0, 6, 0);
228 lcd_string( "Rock the box", 0); 227 lcd_string( "Rock the box");
229 228
230 lcd_position(8, 24); 229 lcd_position(8, 24, 0);
231 lcd_string( "Roolz", 0); 230 lcd_string( "Roolz" );
232 231
233 lcd_update(); 232 lcd_update();
234 233