diff options
Diffstat (limited to 'scumm/akos.cpp')
-rw-r--r-- | scumm/akos.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scumm/akos.cpp b/scumm/akos.cpp index c9cb5c84da..a92f416f9a 100644 --- a/scumm/akos.cpp +++ b/scumm/akos.cpp @@ -259,6 +259,9 @@ byte AkosRenderer::drawLimb(const CostumeData &cost, int limb) { byte result = 0; int xmoveCur, ymoveCur; + if (_skipLimb) + return 0; + if (!cost.active[limb] || cost.stopped & (1 << limb)) return 0; |