From b8454127afc3e6536027c963a68d39321da5af9d Mon Sep 17 00:00:00 2001 From: oparviai Date: Sat, 1 Sep 2012 08:03:26 +0000 Subject: [PATCH] Fixed 8bit file processing in integer version --- source/SoundStretch/WavFile.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/SoundStretch/WavFile.cpp b/source/SoundStretch/WavFile.cpp index ac4796c..f5dcbad 100644 --- a/source/SoundStretch/WavFile.cpp +++ b/source/SoundStretch/WavFile.cpp @@ -348,7 +348,7 @@ int WavInFile::read(short *buffer, int maxElems) default: { stringstream ss; - ss << "\nOnly 8/16 bit sample WAV files supported. Can't open WAV file with "; + ss << "\nOnly 8/16 bit sample WAV files supported in integer compilation. Can't open WAV file with "; ss << (int)header.format.bits_per_sample; ss << " bit sample format. "; ST_THROW_RT_ERROR(ss.str().c_str());