diff options
Diffstat (limited to 'engines/gob/sound')
-rw-r--r-- | engines/gob/sound/sound.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/gob/sound/sound.cpp b/engines/gob/sound/sound.cpp index a90afe0e27..2d2bf8e043 100644 --- a/engines/gob/sound/sound.cpp +++ b/engines/gob/sound/sound.cpp @@ -29,6 +29,7 @@ #include "gob/util.h" #include "gob/dataio.h" #include "gob/game.h" +#include "gob/inter.h" namespace Gob { @@ -370,7 +371,7 @@ void Sound::blasterWaitEndPlay(bool interruptible, bool stopComp) { while (_blaster->isPlaying() && !_vm->_quitRequested) { if (interruptible && (_vm->_util->checkKey() == 0x11B)) { - WRITE_VAR(57, -1); + WRITE_VAR(57, (uint32) -1); return; } _vm->_util->longDelay(200); |