1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-29 06:38:38 +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) if (useBestMethod)
mMethod = gPrefs->Read(GetBestMethodKey(), GetBestMethodDefault()); mMethod = gPrefs->Read(GetBestMethodKey(), GetBestMethodDefault());
else else
mMethod = gPrefs->Read(GetBestMethodKey(), GetBestMethodDefault()); mMethod = gPrefs->Read(GetFastMethodKey(), GetFastMethodDefault());
}; };
}; };
@ -188,7 +188,7 @@ class VarRateResample : public Resample
if (useBestMethod) if (useBestMethod)
mMethod = gPrefs->Read(GetBestMethodKey(), GetBestMethodDefault()); mMethod = gPrefs->Read(GetBestMethodKey(), GetBestMethodDefault());
else else
mMethod = gPrefs->Read(GetBestMethodKey(), GetBestMethodDefault()); mMethod = gPrefs->Read(GetFastMethodKey(), GetFastMethodDefault());
}; };
}; };