summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Everton <dan@iocaine.org>2006-08-14 11:21:05 +0000
committerDan Everton <dan@iocaine.org>2006-08-14 11:21:05 +0000
commitf1cebb7c7fa4e3d9f989ebdb027254eccbe732af (patch)
treee8525619a50d4f4b67ed139191058d89f339fbfd
parent8030c804adf4df4a45eeecb3d93e983f58b0c9a0 (diff)
downloadrockbox-f1cebb7c7fa4e3d9f989ebdb027254eccbe732af.tar.gz
rockbox-f1cebb7c7fa4e3d9f989ebdb027254eccbe732af.zip
Five bits is more than enough for the possible gain values.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10569 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/settings.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/apps/settings.c b/apps/settings.c
index 2a232764fb..bb550ac929 100644
--- a/apps/settings.c
+++ b/apps/settings.c
@@ -596,22 +596,22 @@ static const struct bit_entry hd_bits[] =
596 {1, S_O(eq_hw_enabled), false, "eq hardware enabled", off_on }, 596 {1, S_O(eq_hw_enabled), false, "eq hardware enabled", off_on },
597 597
598 {2, S_O(eq_hw_band0_cutoff), 1, "eq hardware band 0 cutoff", "80Hz,105Hz,135Hz,175Hz" }, 598 {2, S_O(eq_hw_band0_cutoff), 1, "eq hardware band 0 cutoff", "80Hz,105Hz,135Hz,175Hz" },
599 {6|SIGNED, S_O(eq_hw_band0_gain), 12, "eq hardware band 0 gain", NULL }, 599 {5|SIGNED, S_O(eq_hw_band0_gain), 12, "eq hardware band 0 gain", NULL },
600 600
601 {2, S_O(eq_hw_band1_center), 1, "eq hardware band 1 center", "230Hz,300Hz,385Hz,500Hz" }, 601 {2, S_O(eq_hw_band1_center), 1, "eq hardware band 1 center", "230Hz,300Hz,385Hz,500Hz" },
602 {1, S_O(eq_hw_band1_bandwidth), 0, "eq hardware band 1 bandwidth", "narrow,wide" }, 602 {1, S_O(eq_hw_band1_bandwidth), 0, "eq hardware band 1 bandwidth", "narrow,wide" },
603 {6|SIGNED, S_O(eq_hw_band1_gain), 12, "eq hardware band 1 gain", NULL }, 603 {5|SIGNED, S_O(eq_hw_band1_gain), 12, "eq hardware band 1 gain", NULL },
604 604
605 {2, S_O(eq_hw_band2_center), 1, "eq hardware band 2 center", "650Hz,850Hz,1.1kHz,1.4kHz" }, 605 {2, S_O(eq_hw_band2_center), 1, "eq hardware band 2 center", "650Hz,850Hz,1.1kHz,1.4kHz" },
606 {1, S_O(eq_hw_band2_bandwidth), 0, "eq hardware band 2 bandwidth", "narrow,wide" }, 606 {1, S_O(eq_hw_band2_bandwidth), 0, "eq hardware band 2 bandwidth", "narrow,wide" },
607 {6|SIGNED, S_O(eq_hw_band2_gain), 12, "eq hardware band 2 gain", NULL }, 607 {5|SIGNED, S_O(eq_hw_band2_gain), 12, "eq hardware band 2 gain", NULL },
608 608
609 {2, S_O(eq_hw_band3_center), 1, "eq hardware band 3 center", "1.8kHz,2.4kHz,3.2kHz,4.1kHz" }, 609 {2, S_O(eq_hw_band3_center), 1, "eq hardware band 3 center", "1.8kHz,2.4kHz,3.2kHz,4.1kHz" },
610 {1, S_O(eq_hw_band3_bandwidth), 0, "eq hardware band 3 bandwidth", "narrow,wide" }, 610 {1, S_O(eq_hw_band3_bandwidth), 0, "eq hardware band 3 bandwidth", "narrow,wide" },
611 {6|SIGNED, S_O(eq_hw_band3_gain), 12, "eq hardware band 3 gain", NULL }, 611 {5|SIGNED, S_O(eq_hw_band3_gain), 12, "eq hardware band 3 gain", NULL },
612 612
613 {2, S_O(eq_hw_band4_cutoff), 1, "eq hardware band 4 cutoff", "5.3kHz,6.9kHz,9kHz,11.7kHz" }, 613 {2, S_O(eq_hw_band4_cutoff), 1, "eq hardware band 4 cutoff", "5.3kHz,6.9kHz,9kHz,11.7kHz" },
614 {6|SIGNED, S_O(eq_hw_band4_gain), 12, "eq hardware band 4 gain", NULL }, 614 {5|SIGNED, S_O(eq_hw_band4_gain), 12, "eq hardware band 4 gain", NULL },
615#endif 615#endif
616 616
617 /* If values are just added to the end, no need to bump the version. */ 617 /* If values are just added to the end, no need to bump the version. */