in FL_EffectChannel initialize isMuted member - fixes muted FX channels when importing older FLP files (stable backport)

git-svn-id: https://lmms.svn.sf.net/svnroot/lmms/branches/lmms/stable-0.4@1965 0778d3d1-df1d-0410-868b-ea421aaaa00d
This commit is contained in:
Tobias Doerffel
2008-12-22 16:44:36 +00:00
parent 6748aa99d1
commit e1403ee10b
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>
* CMakeLists.txt:

View File

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