diff options
| author | Filippos Karapetis | 2010-06-09 18:42:21 +0000 |
|---|---|---|
| committer | Filippos Karapetis | 2010-06-09 18:42:21 +0000 |
| commit | c486b77bb7d96908d7df1e00b6a61b92fbd176ee (patch) | |
| tree | cb06f541fad894588a9d27ef8329792f5299f7fb /engines/sci/engine/kernel.h | |
| parent | d191c9d0f935d280d7c1a7e71e3e13bbb76ee893 (diff) | |
| download | scummvm-rg350-c486b77bb7d96908d7df1e00b6a61b92fbd176ee.tar.gz scummvm-rg350-c486b77bb7d96908d7df1e00b6a61b92fbd176ee.tar.bz2 scummvm-rg350-c486b77bb7d96908d7df1e00b6a61b92fbd176ee.zip | |
Fixed crash in SCI2.1 games
svn-id: r49546
Diffstat (limited to 'engines/sci/engine/kernel.h')
| -rw-r--r-- | engines/sci/engine/kernel.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/sci/engine/kernel.h b/engines/sci/engine/kernel.h index b79ba8caaa..990e2aff17 100644 --- a/engines/sci/engine/kernel.h +++ b/engines/sci/engine/kernel.h @@ -207,7 +207,6 @@ public: */ Common::String lookupText(reg_t address, int index); -private: /** * Loads the kernel function names. * @@ -216,8 +215,9 @@ private: * The resulting list has the same format regardless of the format of the * name table of the resource (the format changed between version 0 and 1). */ - void loadKernelNames(); + void loadKernelNames(GameFeatures *features); +private: /** * Sets the default kernel function names, based on the SCI version used */ @@ -232,7 +232,7 @@ private: /** * Sets the default kernel function names to the SCI2.1 kernel functions */ - void setKernelNamesSci21(); + void setKernelNamesSci21(GameFeatures *features); #endif /** |
