diff options
Diffstat (limited to 'engines/sci/resource.h')
-rw-r--r-- | engines/sci/resource.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/engines/sci/resource.h b/engines/sci/resource.h index f70bf48bd4..49cc52399e 100644 --- a/engines/sci/resource.h +++ b/engines/sci/resource.h @@ -397,6 +397,24 @@ public: * resource manager. */ void addResourcesFromChunk(uint16 id); + + /** + * Updates the currently active disc number. + */ + void findDisc(const int16 discNo); + + /** + * Gets the currently active disc number. + */ + int16 getCurrentDiscNo() const { return _currentDiscNo; } + +private: + /** + * The currently active disc number. + */ + int16 _currentDiscNo; + +public: #endif bool detectHires(); |