From a4c3b03f15eefd516224e429215258bffa0221de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Stenberg?= Date: Tue, 24 Sep 2002 18:04:15 +0000 Subject: Removed lcd_getfontsize(). Removed font parameters to lcd_putsxy and lcd_getstringsize. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2403 a1c6a512-1295-4272-9138-f99709370657 --- apps/recorder/oscillograph.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'apps/recorder/oscillograph.c') diff --git a/apps/recorder/oscillograph.c b/apps/recorder/oscillograph.c index c3b76c4626..25ae10f01b 100644 --- a/apps/recorder/oscillograph.c +++ b/apps/recorder/oscillograph.c @@ -45,7 +45,7 @@ static int drawMode = DRAW_MODE_FILLED; * hardware scrolling of the display. The user can change * speed */ -Menu oscillograph(void) +bool oscillograph(void) { /* stores current volume value left */ int left; @@ -184,7 +184,7 @@ Menu oscillograph(void) if (draw) { char buf[16]; snprintf(buf, sizeof buf, "Speed: %d", -speed); - lcd_putsxy(0, (y + LCD_HEIGHT - 8) % LCD_HEIGHT, buf, 0); + lcd_putsxy(0, (y + LCD_HEIGHT - 8) % LCD_HEIGHT, buf); lcd_update_rect(0, (y + LCD_HEIGHT - 8) % LCD_HEIGHT, LCD_WIDTH, 8); } @@ -197,5 +197,5 @@ Menu oscillograph(void) lcd_update(); /* standard return */ - return MENU_OK; + return false; } -- cgit v1.2.3