summaryrefslogtreecommitdiff
path: root/apps/screens.c
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2005-08-29 21:15:27 +0000
committerJens Arnold <amiconn@rockbox.org>2005-08-29 21:15:27 +0000
commitd6c054575b4561b4c657565ecb4ff82565fa6c78 (patch)
treec05a7f619a2580a8ae3ee29e863f076d1065c398 /apps/screens.c
parent99a0598c284471342fcda1fdcba90d4b666bfbb3 (diff)
downloadrockbox-d6c054575b4561b4c657565ecb4ff82565fa6c78.tar.gz
rockbox-d6c054575b4561b4c657565ecb4ff82565fa6c78.zip
Renamed CONFIG_HWCODEC and MASNONE to the more appropriate CONFIG_CODEC and SWCODEC, respectively.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7416 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/screens.c')
-rw-r--r--apps/screens.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/screens.c b/apps/screens.c
index 5f949efda8..10e1cdd188 100644
--- a/apps/screens.c
+++ b/apps/screens.c
@@ -1307,7 +1307,7 @@ int draw_id3_item(int line, int top, int header, const char* body)
1307 return line + 2; 1307 return line + 2;
1308} 1308}
1309 1309
1310#if CONFIG_HWCODEC == MASNONE 1310#if CONFIG_CODEC == SWCODEC
1311#define ID3_ITEMS 13 1311#define ID3_ITEMS 13
1312#else 1312#else
1313#define ID3_ITEMS 11 1313#define ID3_ITEMS 11
@@ -1401,7 +1401,7 @@ bool browse_id3(void)
1401 snprintf(buf, sizeof(buf), "%d Hz", id3->frequency); 1401 snprintf(buf, sizeof(buf), "%d Hz", id3->frequency);
1402 line = draw_id3_item(line, top, LANG_ID3_FRECUENCY, buf); 1402 line = draw_id3_item(line, top, LANG_ID3_FRECUENCY, buf);
1403 1403
1404#if CONFIG_HWCODEC == MASNONE 1404#if CONFIG_CODEC == SWCODEC
1405 line = draw_id3_item(line, top, LANG_ID3_TRACK_GAIN, 1405 line = draw_id3_item(line, top, LANG_ID3_TRACK_GAIN,
1406 id3->track_gain_string); 1406 id3->track_gain_string);
1407 1407