From 8ae24a27b3f6cb2272fd7c732c8583623c8164f4 Mon Sep 17 00:00:00 2001 From: Johannes Schickel Date: Wed, 3 Feb 2010 09:42:40 +0000 Subject: Yet more Flac -> FLAC changes for consistency. svn-id: r47847 --- engines/sword1/sound.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'engines/sword1/sound.cpp') diff --git a/engines/sword1/sound.cpp b/engines/sword1/sound.cpp index cc7beaee9a..1c34d5380c 100644 --- a/engines/sword1/sound.cpp +++ b/engines/sword1/sound.cpp @@ -377,7 +377,7 @@ bool Sound::startSpeech(uint16 roomNo, uint16 localNo) { _waveVolPos = 0; } #ifdef USE_FLAC - else if (_cowMode == CowFlac) { + else if (_cowMode == CowFLAC) { _cowFile.seek(index); Common::MemoryReadStream *tmp = _cowFile.readStream(sampleSize); assert(tmp); @@ -405,7 +405,7 @@ bool Sound::startSpeech(uint16 roomNo, uint16 localNo) { } #endif #ifdef USE_MAD - else if (_cowMode == CowMp3) { + else if (_cowMode == CowMP3) { _cowFile.seek(index); Common::MemoryReadStream *tmp = _cowFile.readStream(sampleSize); assert(tmp); @@ -570,8 +570,8 @@ void Sound::initCowSystem() { sprintf(cowName, "SPEECH%d.CLF", SwordEngine::_systemVars.currentCD); _cowFile.open(cowName); if (_cowFile.isOpen()) { - debug(1, "Using Flac compressed Speech Cluster"); - _cowMode = CowFlac; + debug(1, "Using FLAC compressed Speech Cluster"); + _cowMode = CowFLAC; } } #endif @@ -591,7 +591,7 @@ void Sound::initCowSystem() { _cowFile.open(cowName); if (_cowFile.isOpen()) { debug(1, "Using MP3 compressed Speech Cluster"); - _cowMode = CowMp3; + _cowMode = CowMP3; } } #endif -- cgit v1.2.3