diff options
| author | Jens Arnold <amiconn@rockbox.org> | 2004-12-26 14:56:05 +0000 |
|---|---|---|
| committer | Jens Arnold <amiconn@rockbox.org> | 2004-12-26 14:56:05 +0000 |
| commit | b8c9a0caa3e0ae1aad8abe3ec98b7c0a6d967be7 (patch) | |
| tree | 36b1bb387adc24243ed5ebf4fe77f2769160a6ca /apps/plugins/vu_meter.c | |
| parent | dfa95c334b9cffff28059e0de39ae5305e315ee6 (diff) | |
| download | rockbox-b8c9a0caa3e0ae1aad8abe3ec98b7c0a6d967be7.zip rockbox-b8c9a0caa3e0ae1aad8abe3ec98b7c0a6d967be7.tar.gz rockbox-b8c9a0caa3e0ae1aad8abe3ec98b7c0a6d967be7.tar.bz2 rockbox-b8c9a0caa3e0ae1aad8abe3ec98b7c0a6d967be7.tar.xz | |
Plugin fixes: Correct button name for MODE key in help texts, conforming to the manual & wiki documentation (Ondio plugins). Alternate image is selected with MINUS, not MENU (rockbox_flash for player). Shortened some help lines that didn't fit on the display with the default font (solitaire). Fixed a number of typos.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5512 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/vu_meter.c')
| -rw-r--r-- | apps/plugins/vu_meter.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/vu_meter.c b/apps/plugins/vu_meter.c index 1cb37e4..ba21890 100644 --- a/apps/plugins/vu_meter.c +++ b/apps/plugins/vu_meter.c @@ -119,7 +119,7 @@ void load_settings(void) { #if CONFIG_KEYPAD == RECORDER_PAD rb->splash(HZ, true, "Press ON for help"); #elif CONFIG_KEYPAD == ONDIO_PAD - rb->splash(HZ, true, "Press MENU for help"); + rb->splash(HZ, true, "Press MODE for help"); #endif } } @@ -448,7 +448,7 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter) { #if CONFIG_KEYPAD == RECORDER_PAD rb->lcd_puts(0, 1, "F1: Settings"); #elif CONFIG_KEYPAD == ONDIO_PAD - rb->lcd_puts(0, 1, "MENU..: Settings"); + rb->lcd_puts(0, 1, "MODE..: Settings"); #endif rb->lcd_puts(0, 2, "UP/DOWN: Volume"); rb->lcd_update(); |