From fe35d372dab08a2e202b5ecb41ccc14298f8cfbd Mon Sep 17 00:00:00 2001 From: Johannes Schickel Date: Wed, 3 Feb 2010 09:42:11 +0000 Subject: - Rename FlacStream to FLACStream. - Rename makeFlacStream to makeFLACStream. svn-id: r47846 --- engines/agos/sound.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'engines/agos') diff --git a/engines/agos/sound.cpp b/engines/agos/sound.cpp index 6f7aebc5b9..06ba6246e5 100644 --- a/engines/agos/sound.cpp +++ b/engines/agos/sound.cpp @@ -364,14 +364,14 @@ public: #pragma mark - #ifdef USE_FLAC -class FlacSound : public CompressedSound { +class FLACSound : public CompressedSound { public: - FlacSound(Audio::Mixer *mixer, File *file, uint32 base = 0) : CompressedSound(mixer, file, base) {} + FLACSound(Audio::Mixer *mixer, File *file, uint32 base = 0) : CompressedSound(mixer, file, base) {} Audio::AudioStream *makeAudioStream(uint sound) { Common::MemoryReadStream *tmp = loadStream(sound); if (!tmp) return NULL; - return Audio::makeFlacStream(tmp, DisposeAfterUse::YES); + return Audio::makeFLACStream(tmp, DisposeAfterUse::YES); } }; #endif @@ -383,7 +383,7 @@ static CompressedSound *makeCompressedSound(Audio::Mixer *mixer, File *file, con #ifdef USE_FLAC file->open(basename + ".fla"); if (file->isOpen()) { - return new FlacSound(mixer, file); + return new FLACSound(mixer, file); } #endif #ifdef USE_VORBIS -- cgit v1.2.3