From 287c649f4fc6b6a47f5e38992c3a8f1e65986021 Mon Sep 17 00:00:00 2001 From: Leland Lucius Date: Mon, 4 May 2015 02:37:41 -0500 Subject: [PATCH] Correct "float" entry to read "32 bit float" instead --- src/export/ExportPCM.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/export/ExportPCM.cpp b/src/export/ExportPCM.cpp index bd8b76709..680ac116e 100644 --- a/src/export/ExportPCM.cpp +++ b/src/export/ExportPCM.cpp @@ -60,7 +60,7 @@ static const kFormats[] = { { SF_FORMAT_AIFF | SF_FORMAT_PCM_16, wxT("AIFF"), XO("AIFF (Apple) signed 16 bit PCM") }, { SF_FORMAT_WAV | SF_FORMAT_PCM_16, wxT("WAV"), XO("WAV (Microsoft) signed 16 bit PCM") }, - { SF_FORMAT_WAV | SF_FORMAT_FLOAT, wxT("WAVFLT"), XO("WAV (Microsoft) float PCM") }, + { SF_FORMAT_WAV | SF_FORMAT_FLOAT, wxT("WAVFLT"), XO("WAV (Microsoft) 32 bit float PCM") }, { SF_FORMAT_WAV | SF_FORMAT_GSM610, wxT("GSM610"), XO("GSM 6.10 WAV (mobile)") }, };