diff options
Diffstat (limited to 'engines/scumm/he/script_v100he.cpp')
-rw-r--r-- | engines/scumm/he/script_v100he.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/scumm/he/script_v100he.cpp b/engines/scumm/he/script_v100he.cpp index 1e27977e0a..1551eca420 100644 --- a/engines/scumm/he/script_v100he.cpp +++ b/engines/scumm/he/script_v100he.cpp @@ -32,7 +32,7 @@ #include "scumm/resource.h" #include "scumm/he/resource_he.h" #include "scumm/scumm.h" -#include "scumm/sound.h" +#include "scumm/he/sound_he.h" #include "scumm/he/sprite_he.h" #include "scumm/util.h" @@ -1714,7 +1714,7 @@ void ScummEngine_v100he::o100_startSound() { value = pop(); var = pop(); _heSndSoundId = pop(); - _sound->setSoundVar(_heSndSoundId, var, value); + ((SoundHE *)_sound)->setSoundVar(_heSndSoundId, var, value); break; case 92: _sound->addSoundToQueue(_heSndSoundId, _heSndOffset, _heSndChannel, _heSndFlags); |