diff options
author | Nipun Garg | 2019-06-29 05:54:22 +0530 |
---|---|---|
committer | Eugene Sandulenko | 2019-09-03 17:17:04 +0200 |
commit | 6891f478a6c03449d02461da455f05d7963b851e (patch) | |
tree | b719461c613c77fa3f7009b81569b639c7b5df86 /engines/hdb | |
parent | 5b22ced438727f34682de55f3f49c70c50375fa7 (diff) | |
download | scummvm-rg350-6891f478a6c03449d02461da455f05d7963b851e.tar.gz scummvm-rg350-6891f478a6c03449d02461da455f05d7963b851e.tar.bz2 scummvm-rg350-6891f478a6c03449d02461da455f05d7963b851e.zip |
HDB: Add cineAbortable()
Diffstat (limited to 'engines/hdb')
-rw-r--r-- | engines/hdb/ai.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/hdb/ai.h b/engines/hdb/ai.h index f053d20a39..ba1461d536 100644 --- a/engines/hdb/ai.h +++ b/engines/hdb/ai.h @@ -853,6 +853,9 @@ public: bool cinematicsActive() { return _cineActive; } + bool cineAbortable() { + return _cineAbortable; + } void processCines(); void cineCleanup(); void cineAbort(); |