changing AudioDataType -> SoundType, so now the constant names match the name of the data type / the SoundMixer method names

svn-id: r17052
This commit is contained in:
Max Horn 2005-03-09 18:12:54 +00:00
parent 13b8f678fc
commit 0ec193b4be
30 changed files with 84 additions and 84 deletions

View file

@ -1384,13 +1384,13 @@ void ScummEngine_v8::o8_kernelGetFunctions() {
}
break;
case 0xDD: // getGroupSfxVol
push(_mixer->getVolumeForSoundType(SoundMixer::kSFXAudioDataType) / 2);
push(_mixer->getVolumeForSoundType(SoundMixer::kSFXSoundType) / 2);
break;
case 0xDE: // getGroupVoiceVol
push(_mixer->getVolumeForSoundType(SoundMixer::kSpeechAudioDataType) / 2);
push(_mixer->getVolumeForSoundType(SoundMixer::kSpeechSoundType) / 2);
break;
case 0xDF: // getGroupMusicVol
push(_mixer->getVolumeForSoundType(SoundMixer::kMusicAudioDataType) / 2);
push(_mixer->getVolumeForSoundType(SoundMixer::kMusicSoundType) / 2);
break;
case 0xE0: // readRegistryValue
{