From d7e1f7714699fa201bda4f14ed38bfce10949d94 Mon Sep 17 00:00:00 2001 From: Dan Everton Date: Sat, 24 Nov 2007 07:51:00 +0000 Subject: Commit FS#7440. The iPod Video doesn't actually have a hardware equalizer. It does have hardware bass/treble settings with configurable cutoff. So make the bass/treble settings use the hardware and remove the hardware equalizer configuration. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15782 a1c6a512-1295-4272-9138-f99709370657 --- apps/settings.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'apps/settings.c') diff --git a/apps/settings.c b/apps/settings.c index 0b82ad4..6467a0e 100644 --- a/apps/settings.c +++ b/apps/settings.c @@ -648,6 +648,11 @@ void sound_settings_apply(void) sound_set(SOUND_SUPERBASS, global_settings.superbass); #endif +#ifdef HAVE_WM8758 + sound_set(SOUND_BASS_CUTOFF, global_settings.bass_cutoff); + sound_set(SOUND_TREBLE_CUTOFF, global_settings.treble_cutoff); +#endif + #ifdef HAVE_USB_POWER #if CONFIG_CHARGING usb_charging_enable(global_settings.usb_charging); -- cgit v1.1