diff options
| author | Martin Scarratt <mmmm@rockbox.org> | 2006-09-26 11:56:59 +0000 |
|---|---|---|
| committer | Martin Scarratt <mmmm@rockbox.org> | 2006-09-26 11:56:59 +0000 |
| commit | 183499a2d43ebcec9a522bbcbde506f0b3c5e01d (patch) | |
| tree | b6c7a976c5785a6df79b3e9fc8293dda0ae87c10 /apps/recorder | |
| parent | 36e3081e8ca979a941434175e05c1f5db164b111 (diff) | |
| download | rockbox-183499a2d43ebcec9a522bbcbde506f0b3c5e01d.zip rockbox-183499a2d43ebcec9a522bbcbde506f0b3c5e01d.tar.gz rockbox-183499a2d43ebcec9a522bbcbde506f0b3c5e01d.tar.bz2 rockbox-183499a2d43ebcec9a522bbcbde506f0b3c5e01d.tar.xz | |
Recording screen statusbar: Improved channel icon by Paul Louden and improved Q value display for Hardware codec targets
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11062 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/recorder')
| -rw-r--r-- | apps/recorder/icons.c | 7 | ||||
| -rw-r--r-- | apps/recorder/icons.h | 3 |
2 files changed, 8 insertions, 2 deletions
diff --git a/apps/recorder/icons.c b/apps/recorder/icons.c index 711df63..02f14bd 100644 --- a/apps/recorder/icons.c +++ b/apps/recorder/icons.c @@ -32,8 +32,11 @@ const unsigned char bitmap_icons_5x8[][5] = { [Icon_Lock_Main] ={0x78,0x7f,0x49,0x7f,0x78}, /* Lock Main */ [Icon_Lock_Remote]={0x78,0x7f,0x49,0x7f,0x78}, /* Lock Remote */ - [Icon_Stereo]={0x1c, 0x22, 0x1c, 0x22, 0x1c}, /* Stereo recording */ - [Icon_Mono]={0x00, 0x1c, 0x22, 0x1c, 0x00} /* Mono recording */ + [Icon_Stereo]={0x7f, 0x1c, 0x00, 0x1c, 0x7f}, /* Stereo recording */ + [Icon_Mono]={0x00, 0x1c, 0x7f, 0x00, 0x00}, /* Mono recording */ +#if CONFIG_CODEC != SWCODEC + [Icon_q]={0x1e, 0x21, 0x31, 0x21, 0x5e} /* Q icon */ +#endif }; const unsigned char bitmap_icons_6x8[][6] = diff --git a/apps/recorder/icons.h b/apps/recorder/icons.h index b4310aa..826f18b 100644 --- a/apps/recorder/icons.h +++ b/apps/recorder/icons.h @@ -41,6 +41,9 @@ enum icons_5x8 { Icon_Lock_Remote, Icon_Stereo, Icon_Mono, +#if CONFIG_CODEC != SWCODEC + Icon_q, +#endif Icon5x8Last }; |