1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-28 22:28:44 +02:00

Fix a copy-paste typo.

This commit is contained in:
v.audacity 2013-01-11 01:21:59 +00:00
parent a08d0503be
commit f80e64e568

View File

@ -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());
};
};