diff options
| author | Colin Snover | 2017-02-08 11:52:36 -0600 |
|---|---|---|
| committer | Colin Snover | 2017-04-23 13:07:25 -0500 |
| commit | 866419fa71d398edcf087e67f7367deeadd04f14 (patch) | |
| tree | 9ef58907e16ec7c8474207c208476c2d44b40432 /engines/sci/resource.h | |
| parent | 42406cb11a775b129cfe5a913ee239f129eeae71 (diff) | |
| download | scummvm-rg350-866419fa71d398edcf087e67f7367deeadd04f14.tar.gz scummvm-rg350-866419fa71d398edcf087e67f7367deeadd04f14.tar.bz2 scummvm-rg350-866419fa71d398edcf087e67f7367deeadd04f14.zip | |
SCI: Implement fallback detection for SCI3
Diffstat (limited to 'engines/sci/resource.h')
| -rw-r--r-- | engines/sci/resource.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/sci/resource.h b/engines/sci/resource.h index 6a67bf7414..85bd915e5d 100644 --- a/engines/sci/resource.h +++ b/engines/sci/resource.h @@ -436,7 +436,7 @@ public: /** * Finds the internal Sierra ID of the current game from script 0. */ - Common::String findSierraGameId(); + Common::String findSierraGameId(const bool isBE); /** * Finds the location of the game object from script 0. @@ -444,7 +444,7 @@ public: * games. Needs to be false when the heap is accessed directly inside * findSierraGameId(). */ - reg_t findGameObject(bool addSci11ScriptOffset = true); + reg_t findGameObject(const bool addSci11ScriptOffset, const bool isBE); /** * Converts a map resource type to our type |
