diff options
author | Travis Howell | 2004-01-06 06:50:36 +0000 |
---|---|---|
committer | Travis Howell | 2004-01-06 06:50:36 +0000 |
commit | 1e0c78d9a2f2fde032f5dd9e65c3ba710980ea53 (patch) | |
tree | 6b525753d8ae9f55aad604f5d468b27f9bde8dd9 | |
parent | 5e413ceb5c5a319d540d5c7a328509ee69a627f1 (diff) | |
download | scummvm-rg350-1e0c78d9a2f2fde032f5dd9e65c3ba710980ea53.tar.gz scummvm-rg350-1e0c78d9a2f2fde032f5dd9e65c3ba710980ea53.tar.bz2 scummvm-rg350-1e0c78d9a2f2fde032f5dd9e65c3ba710980ea53.zip |
Add check
svn-id: r12164
-rw-r--r-- | scumm/akos.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/scumm/akos.cpp b/scumm/akos.cpp index 18d0d9b888..3d3dff8010 100644 --- a/scumm/akos.cpp +++ b/scumm/akos.cpp @@ -1125,7 +1125,10 @@ bool ScummEngine::akos_increaseAnim(Actor *a, int chan, const byte *aksq, const curpos += 3; break; case AKC_SoundStuff: - curpos += 8; // in Putt is 6 + if (_features & GF_HUMONGOUS) + curpos += 6; + else + curpos += 8; break; case AKC_Cmd3: case AKC_SetVarInActor: |