diff options
Diffstat (limited to 'engines/draci/script.h')
-rw-r--r-- | engines/draci/script.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/draci/script.h b/engines/draci/script.h index 9e3345cd0b..78e813da40 100644 --- a/engines/draci/script.h +++ b/engines/draci/script.h @@ -89,10 +89,12 @@ public: Script(DraciEngine *vm) : _vm(vm), _jump(0) { setupCommandList(); }; int run(GPL2Program program, uint16 offset); + void endCurrentProgram(); private: int _jump; + bool _endProgram; /** List of all GPL commands. Initialised in the constructor. */ const GPL2Command *_commandList; |