From f80e64e5684f44b260f2d7b1ed3118903f0cdecf Mon Sep 17 00:00:00 2001 From: "v.audacity" Date: Fri, 11 Jan 2013 01:21:59 +0000 Subject: [PATCH] Fix a copy-paste typo. --- src/Resample.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Resample.h b/src/Resample.h index 8640ab2e4..a888b7b07 100644 --- a/src/Resample.h +++ b/src/Resample.h @@ -141,7 +141,7 @@ class ConstRateResample : public Resample if (useBestMethod) mMethod = gPrefs->Read(GetBestMethodKey(), GetBestMethodDefault()); else - mMethod = gPrefs->Read(GetBestMethodKey(), GetBestMethodDefault()); + mMethod = gPrefs->Read(GetFastMethodKey(), GetFastMethodDefault()); }; }; @@ -188,7 +188,7 @@ class VarRateResample : public Resample if (useBestMethod) mMethod = gPrefs->Read(GetBestMethodKey(), GetBestMethodDefault()); else - mMethod = gPrefs->Read(GetBestMethodKey(), GetBestMethodDefault()); + mMethod = gPrefs->Read(GetFastMethodKey(), GetFastMethodDefault()); }; };