aboutsummaryrefslogtreecommitdiff
path: root/engines/sky
diff options
context:
space:
mode:
authorMax Horn2007-02-03 21:37:52 +0000
committerMax Horn2007-02-03 21:37:52 +0000
commit73c3625f1f171212d0c2f8e112994f3ee7c6294e (patch)
tree939e5d78844c6a4bba66bf40cfdf67bfd5d4ce60 /engines/sky
parenta2b1ff0de842d800ad311dc2e1b2638722cbdda9 (diff)
downloadscummvm-rg350-73c3625f1f171212d0c2f8e112994f3ee7c6294e.tar.gz
scummvm-rg350-73c3625f1f171212d0c2f8e112994f3ee7c6294e.tar.bz2
scummvm-rg350-73c3625f1f171212d0c2f8e112994f3ee7c6294e.zip
Fixing various doxygen warnings
svn-id: r25362
Diffstat (limited to 'engines/sky')
-rw-r--r--engines/sky/intro.cpp2
-rw-r--r--engines/sky/sound.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/engines/sky/intro.cpp b/engines/sky/intro.cpp
index 55143d7f86..c6cd1f344b 100644
--- a/engines/sky/intro.cpp
+++ b/engines/sky/intro.cpp
@@ -740,7 +740,7 @@ bool Intro::nextPart(uint16 *&data) {
// probably use _skySound instead of calling playRaw()
// directly, but this will have to do for now.
memset(vData, 127, sizeof(struct dataFileHeader));
- _mixer->playRaw(Audio::Mixer::kSFXSoundType, &_voice, vData, _skyDisk->_lastLoadedFileSize, 11025,
+ _mixer->playRaw(Audio::Mixer::kSpeechSoundType, &_voice, vData, _skyDisk->_lastLoadedFileSize, 11025,
Audio::Mixer::FLAG_AUTOFREE | Audio::Mixer::FLAG_UNSIGNED, SOUND_VOICE);
return true;
case WAITVOICE:
diff --git a/engines/sky/sound.cpp b/engines/sky/sound.cpp
index edcfd81581..5e17ab4d01 100644
--- a/engines/sky/sound.cpp
+++ b/engines/sky/sound.cpp
@@ -1245,7 +1245,7 @@ bool Sound::startSpeech(uint16 textNum) {
rate = 11025;
_mixer->stopID(SOUND_SPEECH);
- _mixer->playRaw(Audio::Mixer::kSFXSoundType, &_ingameSpeech, playBuffer, speechSize, rate, Audio::Mixer::FLAG_UNSIGNED | Audio::Mixer::FLAG_AUTOFREE, SOUND_SPEECH);
+ _mixer->playRaw(Audio::Mixer::kSpeechSoundType, &_ingameSpeech, playBuffer, speechSize, rate, Audio::Mixer::FLAG_UNSIGNED | Audio::Mixer::FLAG_AUTOFREE, SOUND_SPEECH);
return true;
}