From 5c0ba529a078a0b3af039800e249df153d7b08b3 Mon Sep 17 00:00:00 2001 From: Linus Nielsen Feltzing Date: Fri, 28 Jun 2002 12:47:42 +0000 Subject: Ooops. I forgot to reset the test values git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1247 a1c6a512-1295-4272-9138-f99709370657 --- firmware/mpeg.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/firmware/mpeg.c b/firmware/mpeg.c index 6aca3c5d89..e2de26e5f6 100644 --- a/firmware/mpeg.c +++ b/firmware/mpeg.c @@ -54,9 +54,9 @@ static char *units[] = static int numdecimals[] = { - 1, /* Volume */ - 2, /* Bass */ - 1 /* Treble */ + 0, /* Volume */ + 0, /* Bass */ + 0 /* Treble */ }; static int minval[] = @@ -750,15 +750,15 @@ int mpeg_val2phys(int setting, int value) switch(setting) { case SOUND_VOLUME: - result = value * 20; + result = value * 2; break; case SOUND_BASS: - result = value * 200; + result = value * 2; break; case SOUND_TREBLE: - result = value * 20; + result = value * 2; break; } return result; -- cgit v1.2.3