Update of /cvsroot/rockbox/uisimulator/common
In directory usw-pr-cvs1:/tmp/cvs-serv27841/uisimulator/common
Modified Files:
stubs.c
Log Message:
Removed lcd_getfontsize(). Removed font parameters to lcd_putsxy and
lcd_getstringsize.
Index: stubs.c
===================================================================
RCS file: /cvsroot/rockbox/uisimulator/common/stubs.c,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -b -r1.15 -r1.16
--- stubs.c 23 Sep 2002 11:23:12 -0000 1.15
+++ stubs.c 24 Sep 2002 18:04:14 -0000 1.16
@@ -98,11 +98,11 @@
(void)s;
}
-Menu simulate_usb(void)
+bool simulate_usb(void)
{
usb_display_info();
while (button_get(true) & BUTTON_REL);
- return MENU_OK;
+ return false;
}
void lcd_define_pattern (int which,char *pattern,int length)
|