Fix waveShape max on LB302

git-svn-id: https://lmms.svn.sf.net/svnroot/lmms/trunk/lmms@1682 0778d3d1-df1d-0410-868b-ea421aaaa00d
This commit is contained in:
Paul Giblock
2008-09-22 06:25:12 +00:00
parent 4efba3740f
commit 668adaa2b2
2 changed files with 4 additions and 1 deletions

View File

@@ -3,6 +3,9 @@
* plugins/midi_import/portsmf/allegro.cpp:
fixed broken SVN on 64bit systems. Who needs these printfs anyways?
* plugins/lb302/lb302.cpp:
max wave-shape model's max match the new total of wave-shapes.
2008-09-21 Tobias Doerffel <tobydox/at/users/dot/sourceforge/dot/net>
* src/core/plugin.cpp:

View File

@@ -280,7 +280,7 @@ lb302Synth::lb302Synth( instrumentTrack * _instrumentTrack ) :
vcf_mod_knob( 0.1f, 0.0f, 1.0f, 0.005f, this, tr( "VCF Envelope Mod" ) ),
vcf_dec_knob( 0.1f, 0.0f, 1.0f, 0.005f, this, tr( "VCF Envelope Decay" ) ),
dist_knob( 0.0f, 0.0f, 1.0f, 0.01f, this, tr( "Distortion" ) ),
wave_shape( 0.0f, 0.0f, 6.0f, this, tr( "Waveform" ) ),
wave_shape( 0.0f, 0.0f, 7.0f, this, tr( "Waveform" ) ),
slide_dec_knob( 0.6f, 0.0f, 1.0f, 0.005f, this, tr( "Slide Decay" ) ),
slideToggle( FALSE, this, tr( "Slide" ) ),
accentToggle( FALSE, this, tr( "Accent" ) ),