diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2002-06-28 15:17:55 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2002-06-28 15:17:55 +0000 |
| commit | eb102e1a239d75f4eaf34398c0dbb29c0bc50c84 (patch) | |
| tree | bc351ccaa6ce718c4062092f27c048320515255e | |
| parent | 07b233515742d4f2a3d0a832e103600093a9d177 (diff) | |
| download | rockbox-eb102e1a239d75f4eaf34398c0dbb29c0bc50c84.zip rockbox-eb102e1a239d75f4eaf34398c0dbb29c0bc50c84.tar.gz rockbox-eb102e1a239d75f4eaf34398c0dbb29c0bc50c84.tar.bz2 rockbox-eb102e1a239d75f4eaf34398c0dbb29c0bc50c84.tar.xz | |
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.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/firmware/mpeg.c b/firmware/mpeg.c index 5fb674d..6a942d6 100644 --- a/firmware/mpeg.c +++ b/firmware/mpeg.c @@ -82,11 +82,11 @@ static int defaultval[] = { 70/2, /* Volume */ #ifdef ARCHOS_RECORDER - 12, /* Bass */ - 12 /* Treble */ + 12+6, /* Bass */ + 12+6 /* Treble */ #else - 15, /* Bass */ - 15 /* Treble */ + 15+7, /* Bass */ + 15+7 /* Treble */ #endif }; |