aboutsummaryrefslogtreecommitdiff
path: root/engines/agos
diff options
context:
space:
mode:
authorJohannes Schickel2010-02-03 09:42:11 +0000
committerJohannes Schickel2010-02-03 09:42:11 +0000
commitfe35d372dab08a2e202b5ecb41ccc14298f8cfbd (patch)
tree447b16207cb64222d62b6c244fcfccd2aa743cc7 /engines/agos
parent9cad13957da8a67e68dd4e268eb53f8e413eb4be (diff)
downloadscummvm-rg350-fe35d372dab08a2e202b5ecb41ccc14298f8cfbd.tar.gz
scummvm-rg350-fe35d372dab08a2e202b5ecb41ccc14298f8cfbd.tar.bz2
scummvm-rg350-fe35d372dab08a2e202b5ecb41ccc14298f8cfbd.zip
- Rename FlacStream to FLACStream.
- Rename makeFlacStream to makeFLACStream. svn-id: r47846
Diffstat (limited to 'engines/agos')
-rw-r--r--engines/agos/sound.cpp8
1 files changed, 4 insertions, 4 deletions
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