diff options
author | johndoe123 | 2015-11-19 17:40:13 +0100 |
---|---|---|
committer | Eugene Sandulenko | 2018-07-20 06:43:33 +0000 |
commit | 09bbb482a8ccdfb8e36128d40364900b99aa2a13 (patch) | |
tree | 45aba751e4c2fc6826c3e9db26ee4bee28e0da9d /engines/illusions/duckman/illusions_duckman.h | |
parent | 601c6f408210344c73dcf4f3bab34b493132387a (diff) | |
download | scummvm-rg350-09bbb482a8ccdfb8e36128d40364900b99aa2a13.tar.gz scummvm-rg350-09bbb482a8ccdfb8e36128d40364900b99aa2a13.tar.bz2 scummvm-rg350-09bbb482a8ccdfb8e36128d40364900b99aa2a13.zip |
ILLUSIONS: DUCKMAN: Implement opcodes 70/71 for pausing/unpausing during the menu
Also change some input functions to return uint istead of byte to allow bigger bitmasks.
Diffstat (limited to 'engines/illusions/duckman/illusions_duckman.h')
-rw-r--r-- | engines/illusions/duckman/illusions_duckman.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/illusions/duckman/illusions_duckman.h b/engines/illusions/duckman/illusions_duckman.h index 5fda0d6d68..39c421dae9 100644 --- a/engines/illusions/duckman/illusions_duckman.h +++ b/engines/illusions/duckman/illusions_duckman.h @@ -165,6 +165,9 @@ public: void dumpActiveScenes(uint32 sceneId, uint32 threadId); void dumpCurrSceneFiles(uint32 sceneId, uint32 threadId); + void pause(uint32 callerThreadId); + void unpause(uint32 callerThreadId); + void setSceneIdThreadId(uint32 theSceneId, uint32 theThreadId); bool findTriggerCause(uint32 sceneId, uint32 verbId, uint32 objectId2, uint32 objectId, uint32 &codeOffs); void reset(); |