diff options
author | Nipun Garg | 2019-06-24 02:11:11 +0530 |
---|---|---|
committer | Eugene Sandulenko | 2019-09-03 17:16:58 +0200 |
commit | b3b5ef0b562060975e5a8e71eb4b1b7e538347fe (patch) | |
tree | 157d7603bdc066fe892f27f109d62717fed4aee1 /engines/hdb/ai.h | |
parent | d41983e83726ed2e5fd1dc1a683909777e27e113 (diff) | |
download | scummvm-rg350-b3b5ef0b562060975e5a8e71eb4b1b7e538347fe.tar.gz scummvm-rg350-b3b5ef0b562060975e5a8e71eb4b1b7e538347fe.tar.bz2 scummvm-rg350-b3b5ef0b562060975e5a8e71eb4b1b7e538347fe.zip |
HDB: Add cineAbort() and cineCleanUp()
Diffstat (limited to 'engines/hdb/ai.h')
-rw-r--r-- | engines/hdb/ai.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/hdb/ai.h b/engines/hdb/ai.h index 072199d319..17e4241c61 100644 --- a/engines/hdb/ai.h +++ b/engines/hdb/ai.h @@ -725,6 +725,8 @@ public: return _cineActive; } void processCines(); + void cineCleanup(); + void cineAbort(); void cineAddToBlitList(const char *id, Picture *pic, int x, int y, bool masked); Picture *cineFindInBlitList(const char *name); void cineRemoveFromBlitList(const char *name); |