diff options
| author | Michael Sevakis <jethead71@rockbox.org> | 2006-09-02 00:23:39 +0000 |
|---|---|---|
| committer | Michael Sevakis <jethead71@rockbox.org> | 2006-09-02 00:23:39 +0000 |
| commit | d386d31ce73da65f89e03e6f3fe93c081e776b83 (patch) | |
| tree | 1bd31b0895c625bece170ae29db978bbbd4b1b4a /apps | |
| parent | 92417c804e4d58645725f0dca78c692b01d1035c (diff) | |
| download | rockbox-d386d31ce73da65f89e03e6f3fe93c081e776b83.zip rockbox-d386d31ce73da65f89e03e6f3fe93c081e776b83.tar.gz rockbox-d386d31ce73da65f89e03e6f3fe93c081e776b83.tar.bz2 rockbox-d386d31ce73da65f89e03e6f3fe93c081e776b83.tar.xz | |
Oops! Missed a couple #defines to enable the features for iRiver.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10852 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/sound_menu.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/apps/sound_menu.c b/apps/sound_menu.c index e61d397..f220d26 100644 --- a/apps/sound_menu.c +++ b/apps/sound_menu.c @@ -1055,21 +1055,14 @@ bool recording_menu(bool no_source) items[i].desc = ID2P(LANG_RECORDING_QUALITY); items[i++].function = recquality; #endif -#ifndef HAVE_UDA1380 -/* We don't support frequency selection for UDA1380 yet. Let it just stay at - the default 44100 Hz. */ items[i].desc = ID2P(LANG_RECORDING_FREQUENCY); items[i++].function = recfrequency; -#endif if(!no_source) { items[i].desc = ID2P(LANG_RECORDING_SOURCE); items[i++].function = recsource; } -/* We don't support other configurations than stereo yet either */ -#ifndef HAVE_UDA1380 items[i].desc = ID2P(LANG_RECORDING_CHANNELS); items[i++].function = recchannels; -#endif #if CONFIG_CODEC == MAS3587F items[i].desc = ID2P(LANG_RECORDING_EDITABLE); items[i++].function = receditable; |