1
0
Fork 0
forked from len0rd/rockbox

Fixed iPod scroll directions for ID3 viewer and corrected semi-misleading comment.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9010 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Zakk Roberts 2006-03-12 02:24:29 +00:00
parent 6643b0dd62
commit a3cfdef7c8

View file

@ -1084,7 +1084,7 @@ bool browse_id3(void)
playlist_amount()); playlist_amount());
line = draw_id3_item(line, top, LANG_ID3_PLAYLIST, buf); line = draw_id3_item(line, top, LANG_ID3_PLAYLIST, buf);
snprintf(buf, sizeof(buf), "%d kbps%s", id3->bitrate, snprintf(buf, sizeof(buf), "%d kbps%s", id3->bitrate,
id3->vbr ? str(LANG_ID3_VBR) : (const unsigned char*) ""); id3->vbr ? str(LANG_ID3_VBR) : (const unsigned char*) "");
line = draw_id3_item(line, top, LANG_ID3_BITRATE, buf); line = draw_id3_item(line, top, LANG_ID3_BITRATE, buf);
@ -1118,9 +1118,9 @@ bool browse_id3(void)
switch(button) switch(button)
{ {
/* It makes more sense to have the keys mapped "backwards" when /* It makes more sense to have the keys mapped "backwards" when
* scrolling a list. * scrolling a list on the archos studios/players and the ipod.
*/ */
#if defined(HAVE_LCD_BITMAP) #if defined(HAVE_LCD_BITMAP) && !(CONFIG_KEYPAD == IPOD_4G_PAD)
case SETTINGS_INC: case SETTINGS_INC:
case SETTINGS_INC | BUTTON_REPEAT: case SETTINGS_INC | BUTTON_REPEAT:
#else #else
@ -1137,7 +1137,7 @@ bool browse_id3(void)
break; break;
#if defined(HAVE_LCD_BITMAP) #if defined(HAVE_LCD_BITMAP) && !(CONFIG_KEYPAD == IPOD_4G_PAD)
case SETTINGS_DEC: case SETTINGS_DEC:
case SETTINGS_DEC | BUTTON_REPEAT: case SETTINGS_DEC | BUTTON_REPEAT:
#else #else