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:
parent
13b8f678fc
commit
0ec193b4be
30 changed files with 84 additions and 84 deletions
|
@ -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
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue