From 01fe2c5df29dfa279dde4cf81924bf71ec45e23b Mon Sep 17 00:00:00 2001 From: Alex Szpakowski Date: Thu, 10 Aug 2017 20:29:02 -0300 Subject: [PATCH] Fix FLAC decoder code to compile if someone uncomments it. Resolves issue #1322. --HG-- branch : minor --- src/modules/sound/lullaby/FLACDecoder.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/sound/lullaby/FLACDecoder.cpp b/src/modules/sound/lullaby/FLACDecoder.cpp index 13d9801df..a4957fce4 100644 --- a/src/modules/sound/lullaby/FLACDecoder.cpp +++ b/src/modules/sound/lullaby/FLACDecoder.cpp @@ -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()