From 5e9732367d43d806b3552c88603b8564346fe39f Mon Sep 17 00:00:00 2001 From: Dave Chapman Date: Sat, 24 May 2008 08:03:15 +0000 Subject: [PATCH] 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 --- firmware/sound.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 @@ */ #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 */