diff options
author | Björn Stenberg <bjorn@haxx.se> | 2002-09-24 18:04:15 +0000 |
---|---|---|
committer | Björn Stenberg <bjorn@haxx.se> | 2002-09-24 18:04:15 +0000 |
commit | a4c3b03f15eefd516224e429215258bffa0221de (patch) | |
tree | 84ab843fdeaed0010f09a5de80ba679258e4fcd3 /apps/recorder/oscillograph.c | |
parent | 614272c45f6235b01685d3aa48b5a154f9362c10 (diff) | |
download | rockbox-a4c3b03f15eefd516224e429215258bffa0221de.tar.gz rockbox-a4c3b03f15eefd516224e429215258bffa0221de.zip |
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
Diffstat (limited to 'apps/recorder/oscillograph.c')
-rw-r--r-- | apps/recorder/oscillograph.c | 6 |
1 files changed, 3 insertions, 3 deletions
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; } |