Skip to content
Draft
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
ToneStackLT -> ToneStack
ToneStackLT was removed in 0.9.24. It's an emulation of the tonestack in the
1959 Bassman 5F6-A amp and corresponds to ToneStack model number 0 (defaul).
They do differ however but on bass/mid/treble set to all low or all high a
pattern upgraded from lmms-1.2 to 1.3 will be identical.
  • Loading branch information
zonkmachine committed May 27, 2024
commit f63ec84d698fad297cfe58c8052d1b13c3e8942c
7 changes: 7 additions & 0 deletions src/core/DataFile.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1808,6 +1808,13 @@ void DataFile::upgrade_1_3_0()
};
iterate_ladspa_ports(effect, fn);
}

else if( attribute.attribute( "name" ) == "plugin" &&
attribute.attribute( "value" ) == "ToneStackLT" )
{
attribute.setAttribute( "value", "ToneStack" );
}

/*
SWH
*/
Expand Down