summaryrefslogtreecommitdiff
path: root/uisimulator/uibasic.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-03-26 14:42:33 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-03-26 14:42:33 +0000
commit0c4589d3bcddc6721793faad63f8316eca851e83 (patch)
tree654d0b309313cc3ba2fb8be58992b2a7009d1739 /uisimulator/uibasic.c
parenta1fd255d04e1835b2c8cc77ea414ecddea55d8e6 (diff)
this shows the bugs I have now
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'uisimulator/uibasic.c')
-rw-r--r--uisimulator/uibasic.c18
1 files changed, 6 insertions, 12 deletions
diff --git a/uisimulator/uibasic.c b/uisimulator/uibasic.c
index c6c9c7d236..9af52f4839 100644
--- a/uisimulator/uibasic.c
+++ b/uisimulator/uibasic.c
@@ -225,13 +225,15 @@ screenhack (Display *the_dpy, Window the_window)
Logf("Rockbox will kill ya!");
lcd_position(1, 1);
- lcd_string( "RockBoxx", 0);
+ lcd_string( "R", 0);
- lcd_position(8, 16);
+ lcd_position(0, 16);
lcd_string( "R", 0);
+#if 0
lcd_position(8, 24);
lcd_string( "2", 0);
+#endif
while (1) {
/* deal with input here */
@@ -247,6 +249,8 @@ void screen_redraw()
lcd_update();
+ /* draw a border around the "Recorder" screen */
+
#define X1 0
#define Y1 0
#define X2 (LCD_WIDTH + MARGIN_X*2)
@@ -257,14 +261,4 @@ void screen_redraw()
drawline(1, X1, Y2, X2, Y2);
drawline(1, X1, Y1, X1, Y2);
-#if 0
- /* does nothing "real" yet */
- /* drawtext(1, 20, 20, PROGNAME);*/
-
- for(y=0; y< 112; y++)
- for(x=0; x<64; x++)
- drawdot(1, x+16, y+16);
- /* drawline(1, 0, 0, 40, 50); */
-#endif
}
-