diff options
author | Sven Hesse | 2007-02-06 21:23:14 +0000 |
---|---|---|
committer | Sven Hesse | 2007-02-06 21:23:14 +0000 |
commit | edefc7bde397b766c0bbe944e3ade6417f323e72 (patch) | |
tree | 934660b48125dd6c17b7356e69184ad0bf948039 /engines/gob | |
parent | 8833cdb03fcb2d635bd05ca72854e35157a05ecd (diff) | |
download | scummvm-rg350-edefc7bde397b766c0bbe944e3ade6417f323e72.tar.gz scummvm-rg350-edefc7bde397b766c0bbe944e3ade6417f323e72.tar.bz2 scummvm-rg350-edefc7bde397b766c0bbe944e3ade6417f323e72.zip |
Corrected the goblins walking sound (#1621086)
svn-id: r25404
Diffstat (limited to 'engines/gob')
-rw-r--r-- | engines/gob/inter_v1.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/engines/gob/inter_v1.cpp b/engines/gob/inter_v1.cpp index 0a2468a4c8..8f7948b92e 100644 --- a/engines/gob/inter_v1.cpp +++ b/engines/gob/inter_v1.cpp @@ -1465,7 +1465,12 @@ bool Inter_v1::o1_keyFunc(char &cmdCount, int16 &counter, int16 &retFlag) { if (flag != 1) { if (flag != 2) { - _vm->_util->longDelay(flag); + if (flag < 20) { + _vm->_util->delay(flag); + _noBusyWait = true; + } + else + _vm->_util->longDelay(flag); return false; } |