aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
Diffstat (limited to 'engines')
-rw-r--r--engines/access/player.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/access/player.cpp b/engines/access/player.cpp
index 2abe9ad097..7adfc5ec0f 100644
--- a/engines/access/player.cpp
+++ b/engines/access/player.cpp
@@ -666,7 +666,8 @@ void Player::plotCom1() {
}
void Player::plotCom2() {
- if (!_playerOff)
+ // WORKAROUND: Amazon has at least one cutscene with the player not properly turned off
+ if (!_playerOff && _spritesPtr != nullptr)
_vm->_images.addToList(*this);
}