mirror of
https://github.com/cookiengineer/audacity
synced 2025-06-19 09:30:06 +02:00
Increase max sample rate for RAW to 384 kHz
Match the maximum preset sample rate.
This commit is contained in:
parent
f027708fe1
commit
0a12f6a81f
@ -490,8 +490,9 @@ void ImportRawDialog::OnOK(wxCommandEvent & WXUNUSED(event))
|
|||||||
mPercent = 100.0;
|
mPercent = 100.0;
|
||||||
if (mRate < 100.0)
|
if (mRate < 100.0)
|
||||||
mRate = 100.0;
|
mRate = 100.0;
|
||||||
if (mRate > 100000.0)
|
// Highest preset sample rate supported in Audacity 2.3.0 is 384 kHz
|
||||||
mRate = 100000.0;
|
if (mRate > 384000.0)
|
||||||
|
mRate = 384000.0;
|
||||||
|
|
||||||
EndModal(true);
|
EndModal(true);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user