From ad548e6d90a547275c897e4f0a63f9b3122f17ff Mon Sep 17 00:00:00 2001 From: Tobias Doerffel Date: Fri, 30 May 2008 22:27:41 +0000 Subject: [PATCH] fixed wrong item in effect blacklist git-svn-id: https://lmms.svn.sf.net/svnroot/lmms/trunk/lmms@1034 0778d3d1-df1d-0410-868b-ea421aaaa00d --- ChangeLog | 3 +++ plugins/ladspa_effect/ladspa_effect.cpp | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 3fdb8be9e..a29d47cf4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2008-05-30 Tobias Doerffel + * plugins/ladspa_effect/ladspa_effect.cpp: + fixed wrong item in effect blacklist + * include/mixer.h: * src/core/mixer.cpp: use less complex worker-thread-synchronization diff --git a/plugins/ladspa_effect/ladspa_effect.cpp b/plugins/ladspa_effect/ladspa_effect.cpp index 132a6f24f..be73f19cc 100644 --- a/plugins/ladspa_effect/ladspa_effect.cpp +++ b/plugins/ladspa_effect/ladspa_effect.cpp @@ -534,7 +534,7 @@ sample_rate_t ladspaEffect::maxSamplerate( const QString & _name ) { if( __buggy_plugins.isEmpty() ) { - __buggy_plugins["C * AmpVTS"] = 88200; + __buggy_plugins["C* AmpVTS"] = 88200; __buggy_plugins["Chorus2"] = 44100; __buggy_plugins["Notch Filter"] = 96000; }