aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/inter_v1.cpp
diff options
context:
space:
mode:
authorSven Hesse2007-02-06 21:23:14 +0000
committerSven Hesse2007-02-06 21:23:14 +0000
commitedefc7bde397b766c0bbe944e3ade6417f323e72 (patch)
tree934660b48125dd6c17b7356e69184ad0bf948039 /engines/gob/inter_v1.cpp
parent8833cdb03fcb2d635bd05ca72854e35157a05ecd (diff)
downloadscummvm-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/inter_v1.cpp')
-rw-r--r--engines/gob/inter_v1.cpp7
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;
}