Fix FLAC decoder code to compile if someone uncomments it. Resolves issue #1322.

--HG--
branch : minor
This commit is contained in:
Alex Szpakowski
2017-08-10 20:29:02 -03:00
parent 74d9bc7faf
commit 01fe2c5df2
+1 -1
View File
@@ -69,7 +69,7 @@ bool FLACDecoder::accepts(const std::string &ext)
love::sound::Decoder *FLACDecoder::clone()
{
return new FLACDecoder(data.get(), ext, bufferSize, sampleRate);
return new FLACDecoder(data.get(), ext, bufferSize);
}
int FLACDecoder::decode()