summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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