in FL_EffectChannel initialize isMuted member - fixes muted FX channels when importing older FLP files

git-svn-id: https://lmms.svn.sf.net/svnroot/lmms/trunk/lmms@1964 0778d3d1-df1d-0410-868b-ea421aaaa00d
This commit is contained in:
Tobias Doerffel
2008-12-22 16:43:58 +00:00
parent 14017622db
commit d63b2f2711
2 changed files with 8 additions and 1 deletions

View File

@@ -1,3 +1,9 @@
2008-12-22 Tobias Doerffel <tobydox/at/users/dot/sourceforge/dot/net>
* plugins/flp_import/flp_import.cpp:
in FL_EffectChannel initialize isMuted member - fixes muted FX channels
when importing older FLP files
2008-12-19 Tobias Doerffel <tobydox/at/users/dot/sourceforge/dot/net>
* plugins/vst_base/vst_plugin.h:

View File

@@ -509,7 +509,8 @@ struct FL_EffectChannel
{
FL_EffectChannel() :
name(),
volume( DefaultVolume )
volume( DefaultVolume ),
isMuted( false )
{
}