diff options
author | Travis Howell | 2004-01-02 04:58:39 +0000 |
---|---|---|
committer | Travis Howell | 2004-01-02 04:58:39 +0000 |
commit | dfc9ac50dfb21d7021e3edbd63140ed4c177167c (patch) | |
tree | 0e1d0e76c256d310f1352921250e35b791214845 | |
parent | 4043db7d631ccd096e938e9e4eea005921644ef2 (diff) | |
download | scummvm-rg350-dfc9ac50dfb21d7021e3edbd63140ed4c177167c.tar.gz scummvm-rg350-dfc9ac50dfb21d7021e3edbd63140ed4c177167c.tar.bz2 scummvm-rg350-dfc9ac50dfb21d7021e3edbd63140ed4c177167c.zip |
Fix missing sfx in puttputt
svn-id: r12081
-rw-r--r-- | scumm/akos.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/scumm/akos.cpp b/scumm/akos.cpp index 7098a3cbf8..1030244f09 100644 --- a/scumm/akos.cpp +++ b/scumm/akos.cpp @@ -1218,8 +1218,7 @@ bool ScummEngine::akos_increaseAnim(Actor *a, int chan, const byte *aksq, const a->flip = GW(2) != 0; continue; case AKC_CmdQue3: -// tmp = GB(2); // previous - tmp = GB(2) - 1; + tmp = GB(2); if ((uint) tmp < 8) akos_queCommand(3, a, a->sound[tmp], 0); continue; |