summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2002-06-28 15:17:55 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2002-06-28 15:17:55 +0000
commiteb102e1a239d75f4eaf34398c0dbb29c0bc50c84 (patch)
treebc351ccaa6ce718c4062092f27c048320515255e
parent07b233515742d4f2a3d0a832e103600093a9d177 (diff)
downloadrockbox-eb102e1a239d75f4eaf34398c0dbb29c0bc50c84.tar.gz
rockbox-eb102e1a239d75f4eaf34398c0dbb29c0bc50c84.zip
New defaults for the bass/treble
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1252 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--firmware/mpeg.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/firmware/mpeg.c b/firmware/mpeg.c
index 5fb674db06..6a942d6a7f 100644
--- a/firmware/mpeg.c
+++ b/firmware/mpeg.c
@@ -82,11 +82,11 @@ static int defaultval[] =
82{ 82{
83 70/2, /* Volume */ 83 70/2, /* Volume */
84#ifdef ARCHOS_RECORDER 84#ifdef ARCHOS_RECORDER
85 12, /* Bass */ 85 12+6, /* Bass */
86 12 /* Treble */ 86 12+6 /* Treble */
87#else 87#else
88 15, /* Bass */ 88 15+7, /* Bass */
89 15 /* Treble */ 89 15+7 /* Treble */
90#endif 90#endif
91}; 91};
92 92