From a63456be33e31d785f4cc570a13bbd2757316073 Mon Sep 17 00:00:00 2001 From: John Glover Date: Tue, 11 Sep 2012 17:50:40 +0200 Subject: [base] Bug fix: peaks and partial vectors should be resized outside of data loss warning. --- src/simpl/base.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/simpl/base.cpp b/src/simpl/base.cpp index c2289ba..9683df3 100644 --- a/src/simpl/base.cpp +++ b/src/simpl/base.cpp @@ -131,8 +131,9 @@ void Frame::max_peaks(int new_max_peaks) { // losing data here, allow but warn printf("Warning: max peaks changed to less than current number " "of peaks, some existing data was lost.\n"); - _peaks.resize(_max_peaks); } + + _peaks.resize(_max_peaks); } void Frame::add_peak(Peak* peak) { @@ -170,8 +171,9 @@ void Frame::max_partials(int new_max_partials) { // losing data here, allow but warn printf("Warning: max partials changed to less than current number" " of partials, some existing data was lost.\n"); - _partials.resize(_max_partials); } + + _partials.resize(_max_partials); } void Frame::add_partial(Peak* peak) { -- cgit v1.2.3