diff options
author | Sven Hesse | 2009-07-05 11:27:11 +0000 |
---|---|---|
committer | Sven Hesse | 2009-07-05 11:27:11 +0000 |
commit | e861fab808897b8ec10a03930d94a079f1c7f1bb (patch) | |
tree | d7f609032b7bda2982239a19a20ffea946066a04 /engines/gob/sound | |
parent | 704895b35ff365525e894f8caf92c4383d446209 (diff) | |
download | scummvm-rg350-e861fab808897b8ec10a03930d94a079f1c7f1bb.tar.gz scummvm-rg350-e861fab808897b8ec10a03930d94a079f1c7f1bb.tar.bz2 scummvm-rg350-e861fab808897b8ec10a03930d94a079f1c7f1bb.zip |
Added a Key and ShortKey enum
svn-id: r42121
Diffstat (limited to 'engines/gob/sound')
-rw-r--r-- | engines/gob/sound/sound.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/gob/sound/sound.cpp b/engines/gob/sound/sound.cpp index d3afc9baa3..2d7ba02385 100644 --- a/engines/gob/sound/sound.cpp +++ b/engines/gob/sound/sound.cpp @@ -506,7 +506,7 @@ void Sound::blasterWaitEndPlay(bool interruptible, bool stopComp) { _blaster->endComposition(); while (_blaster->isPlaying() && !_vm->shouldQuit()) { - if (interruptible && (_vm->_util->checkKey() == 0x11B)) { + if (interruptible && (_vm->_util->checkKey() == kKeyEscape)) { WRITE_VAR(57, (uint32) -1); return; } |