diff options
Diffstat (limited to 'engines/hdb/ai.cpp')
-rw-r--r-- | engines/hdb/ai.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/engines/hdb/ai.cpp b/engines/hdb/ai.cpp index 358631d53e..2246a51a1b 100644 --- a/engines/hdb/ai.cpp +++ b/engines/hdb/ai.cpp @@ -33,7 +33,12 @@ AI::~AI() { } void AI::cineStart(bool abortable, char *abortFunc) { - warning("STUB: AI::cineStart"); + _cineAbortable = abortable; + _cineAborted = false; + _cineAbortFunc = abortFunc; + _cineActive = true; + _playerLock = false; + _cameraLock = false; } void AI::cineSetCamera(int x, int y) { |