From ca4fb8dd044cac2e4e112f3ee2a3ce80ce341682 Mon Sep 17 00:00:00 2001 From: Nipun Garg Date: Tue, 18 Jun 2019 06:02:04 +0530 Subject: HDB: Stub out AI::init() --- engines/hdb/ai.cpp | 5 +++++ engines/hdb/ai.h | 2 ++ 2 files changed, 7 insertions(+) (limited to 'engines') diff --git a/engines/hdb/ai.cpp b/engines/hdb/ai.cpp index 36dbcbe7cc..ca4d83c177 100644 --- a/engines/hdb/ai.cpp +++ b/engines/hdb/ai.cpp @@ -32,6 +32,11 @@ AI::~AI() { delete _cine; } +bool AI::init() { + warning("STUB: AI::init required"); + return true; +} + void AI::processCines() { bool complete, bailOut; diff --git a/engines/hdb/ai.h b/engines/hdb/ai.h index ee82a45e0c..549157716d 100644 --- a/engines/hdb/ai.h +++ b/engines/hdb/ai.h @@ -85,6 +85,8 @@ public: AI(); ~AI(); + bool init(); + // Cinematic Functions void processCines(); void cineStart(bool abortable, char *abortFunc); -- cgit v1.2.3