summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDave Chapman <dave@dchapman.com>2008-05-24 08:03:15 +0000
committerDave Chapman <dave@dchapman.com>2008-05-24 08:03:15 +0000
commit5e9732367d43d806b3552c88603b8564346fe39f (patch)
treeceea801d200a69bb2d102d2d75f301bc1c062e37
parent402dec539a4aca085e703e3863a5c62bdd82b4b7 (diff)
downloadrockbox-5e9732367d43d806b3552c88603b8564346fe39f.tar.gz
rockbox-5e9732367d43d806b3552c88603b8564346fe39f.zip
Make life easier for people working on new ports (audio drivers are normally one of the last things written), and revert r17511. Also take the opportunity to use more typical dummy values for VOLUME_MIN and VOLUME_MAX.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17620 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--firmware/sound.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/firmware/sound.c b/firmware/sound.c
index 2cf6ad08e9..7c862db515 100644
--- a/firmware/sound.c
+++ b/firmware/sound.c
@@ -40,7 +40,9 @@
40*/ 40*/
41 41
42#if !defined(VOLUME_MIN) && !defined(VOLUME_MAX) 42#if !defined(VOLUME_MIN) && !defined(VOLUME_MAX)
43#error define for VOLUME_MIN and VOLUME_MAX is missing! 43#warning define for VOLUME_MIN and VOLUME_MAX is missing
44#define VOLUME_MIN -700
45#define VOLUME_MAX 0
44#endif 46#endif
45 47
46/* volume/balance/treble/bass interdependency main part */ 48/* volume/balance/treble/bass interdependency main part */