diff options
| author | Dave Chapman <dave@dchapman.com> | 2008-05-24 08:03:15 +0000 |
|---|---|---|
| committer | Dave Chapman <dave@dchapman.com> | 2008-05-24 08:03:15 +0000 |
| commit | 5e9732367d43d806b3552c88603b8564346fe39f (patch) | |
| tree | ceea801d200a69bb2d102d2d75f301bc1c062e37 | |
| parent | 402dec539a4aca085e703e3863a5c62bdd82b4b7 (diff) | |
| download | rockbox-5e9732367d43d806b3552c88603b8564346fe39f.zip rockbox-5e9732367d43d806b3552c88603b8564346fe39f.tar.gz rockbox-5e9732367d43d806b3552c88603b8564346fe39f.tar.bz2 rockbox-5e9732367d43d806b3552c88603b8564346fe39f.tar.xz | |
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.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/firmware/sound.c b/firmware/sound.c index 2cf6ad0..7c862db 100644 --- a/firmware/sound.c +++ b/firmware/sound.c @@ -40,7 +40,9 @@ */ #if !defined(VOLUME_MIN) && !defined(VOLUME_MAX) -#error define for VOLUME_MIN and VOLUME_MAX is missing! +#warning define for VOLUME_MIN and VOLUME_MAX is missing +#define VOLUME_MIN -700 +#define VOLUME_MAX 0 #endif /* volume/balance/treble/bass interdependency main part */ |