diff options
Diffstat (limited to 'engines/sci/engine/script.h')
-rw-r--r-- | engines/sci/engine/script.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/engines/sci/engine/script.h b/engines/sci/engine/script.h index e316fc0c8d..04603ad829 100644 --- a/engines/sci/engine/script.h +++ b/engines/sci/engine/script.h @@ -238,9 +238,10 @@ public: void mcpyInOut(int dst, const void *src, size_t n); /** - * Finds the pointer where a block of a specific type starts from + * Finds the pointer where a block of a specific type starts from, + * in SCI0 - SCI1 games */ - byte *findBlock(int type, int skipBlockIndex = -1); + byte *findBlockSCI0(int type, int startBlockIndex = -1); private: /** @@ -267,6 +268,8 @@ private: * @param segmentId The script's segment id */ void initialiseObjectsSci11(SegManager *segMan, SegmentId segmentId); + + void syncHeap(Common::Serializer &ser); }; } // End of namespace Sci |