summaryrefslogtreecommitdiff
path: root/apps/plugins/midi/synth.c
diff options
context:
space:
mode:
authorStepan Moskovchenko <stevenm@rockbox.org>2007-09-30 09:01:38 +0000
committerStepan Moskovchenko <stevenm@rockbox.org>2007-09-30 09:01:38 +0000
commit414724e2f433f024512e0ad9bf8471b1d24fdd4f (patch)
treebe53c089ff08332aca89b618373863f32aa61db6 /apps/plugins/midi/synth.c
parent80f1688423eaad7a2ad9e4809331e192bcd0047d (diff)
downloadrockbox-414724e2f433f024512e0ad9bf8471b1d24fdd4f.zip
rockbox-414724e2f433f024512e0ad9bf8471b1d24fdd4f.tar.gz
rockbox-414724e2f433f024512e0ad9bf8471b1d24fdd4f.tar.bz2
rockbox-414724e2f433f024512e0ad9bf8471b1d24fdd4f.tar.xz
MIDI: Kick up number of voices and decrease the decay rate, taking
advantage of the recent speedups. Some instruments sound a lot more natural now. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14910 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/midi/synth.c')
-rw-r--r--apps/plugins/midi/synth.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/midi/synth.c b/apps/plugins/midi/synth.c
index acf300f..44d42c0 100644
--- a/apps/plugins/midi/synth.c
+++ b/apps/plugins/midi/synth.c
@@ -229,7 +229,7 @@ void setPoint(struct SynthObject * so, int pt)
* default this to 10, and maybe later have an option to set it to 9
* for longer decays.
*/
- so->curRate = r<<11;
+ so->curRate = r<<10;
/*
* Do this here because the patches assume a 44100 sampling rate