summaryrefslogtreecommitdiffstats
path: root/uisimulator
diff options
context:
space:
mode:
authorRobert Hak <adiamas@rockbox.org>2002-05-03 07:01:40 +0000
committerRobert Hak <adiamas@rockbox.org>2002-05-03 07:01:40 +0000
commit6675042641775fb400911ea6114719edac844ef6 (patch)
treec9ad79436ad20b536240142437e20eddf51d451c /uisimulator
parent38cb040f077300bfec90fcb02dcdbf5ffaa69e4c (diff)
downloadrockbox-6675042641775fb400911ea6114719edac844ef6.tar.gz
rockbox-6675042641775fb400911ea6114719edac844ef6.zip
*** empty log message ***
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@402 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'uisimulator')
-rw-r--r--uisimulator/app.c2
-rw-r--r--uisimulator/screensaver.c2
2 files changed, 1 insertions, 3 deletions
diff --git a/uisimulator/app.c b/uisimulator/app.c
index 44f396eae2..0e5fe7eec8 100644
--- a/uisimulator/app.c
+++ b/uisimulator/app.c
@@ -102,11 +102,9 @@ void app_main(void)
case BUTTON_DOWN:
if(cursor == menu_bottom ){
/* wrap around to menu top */
- printf("from (%d) to (%d)\n", cursor, menu_top);
cursor = put_cursor(cursor, menu_top);
} else {
/* move down */
- printf("from (%d) to (%d)\n", cursor, cursor+1);
cursor = put_cursor(cursor, cursor+1);
}
break;
diff --git a/uisimulator/screensaver.c b/uisimulator/screensaver.c
index b5e90d7cc0..ab7faf8d90 100644
--- a/uisimulator/screensaver.c
+++ b/uisimulator/screensaver.c
@@ -79,7 +79,7 @@ void ss_loop(void)
return;
lcd_clear_display();
- drawrect(x-offset, y-offset, x2+offset, y2+offset);
+ lcd_drawrect(x-offset, y-offset, x2+offset, y2+offset);
lcd_update();
i+=factor;