diff dsp/onsets/PeakPicking.cpp @ 185:2ae4ceb76ac3

Fix some uninitialised values
author Chris Cannam
date Mon, 07 Sep 2015 14:00:30 +0100
parents f976d7609700
children fdaa63607c15
line wrap: on
line diff
--- a/dsp/onsets/PeakPicking.cpp	Tue Jul 21 07:34:15 2015 +0100
+++ b/dsp/onsets/PeakPicking.cpp	Mon Sep 07 14:00:30 2015 +0100
@@ -58,7 +58,7 @@
     m_DFProcessingParams.winPost = Config.WinT.post; 
     m_DFProcessingParams.AlphaNormParam = Config.alpha;
     m_DFProcessingParams.isMedianPositive = false;
-    m_DFProcessingParams.Delta = Config.delta; //add the delta threshold as an adjustable parameter
+    m_DFProcessingParams.delta = Config.delta; //add the delta threshold as an adjustable parameter
 
     m_DFSmoothing = new DFProcess( m_DFProcessingParams );