mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-18 23:57:32 +00:00
SCI/newgui: kAnimate added comment about fastCast
svn-id: r45315
This commit is contained in:
parent
fd9a062452
commit
e3d03ce22b
@ -51,12 +51,13 @@ void SciGuiAnimate::init() {
|
||||
_listSize = 0;
|
||||
|
||||
_ignoreFastCast = false;
|
||||
// fastCast object is not found in any SCI games prior SCI1
|
||||
if (getSciVersion() <= SCI_VERSION_01)
|
||||
_ignoreFastCast = true;
|
||||
// Also if fastCast object exists at gamestartup, we can assume that the interpreter doesnt do kAnimate aborts
|
||||
// (found in larry 1)
|
||||
if (!_s->_segMan->findObjectByName("fastCast").isNull())
|
||||
_ignoreFastCast = true;
|
||||
if (_ignoreFastCast)
|
||||
warning("Ignoring fast cast");
|
||||
}
|
||||
|
||||
void SciGuiAnimate::disposeLastCast() {
|
||||
|
Loading…
Reference in New Issue
Block a user