mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-14 05:38:56 +00:00
SAGA: Fix bug #2928923.
Bug #2928923: 'ITE: Graphic Glitches during racoon death "Cut Scene"'. Disable actor drawing for these scenes. A long standing bug in original. svn-id: r49727
This commit is contained in:
parent
fead2bb719
commit
51c22b39c8
@ -1173,7 +1173,9 @@ void Actor::drawActors() {
|
||||
return;
|
||||
}
|
||||
|
||||
if (_vm->_anim->hasCutaway()) {
|
||||
// WORKAROUND
|
||||
// Bug #2928923: 'ITE: Graphic Glitches during racoon death "Cut Scene"'
|
||||
if (_vm->_anim->hasCutaway() || _vm->_scene->currentSceneNumber() == 287 || _vm->_scene->currentSceneNumber() == 286) {
|
||||
drawSpeech();
|
||||
return;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user