Fixed regression from commit #49537

svn-id: r49543
This commit is contained in:
Filippos Karapetis 2010-06-09 15:21:10 +00:00
parent 32d7f7ddb0
commit 3c9ab81a07
3 changed files with 2 additions and 2 deletions

View File

@ -392,7 +392,6 @@ SciKernelFunction kfunct_mappers[] = {
};
Kernel::Kernel(ResourceManager *resMan, SegManager *segMan) : _resMan(resMan), _segMan(segMan) {
loadKernelNames();
loadSelectorNames();
mapSelectors(); // Map a few special selectors for later use
}

View File

@ -207,7 +207,6 @@ public:
*/
Common::String lookupText(reg_t address, int index);
private:
/**
* Loads the kernel function names.
*
@ -218,6 +217,7 @@ private:
*/
void loadKernelNames();
private:
/**
* Sets the default kernel function names, based on the SCI version used
*/

View File

@ -217,6 +217,7 @@ Common::Error SciEngine::run() {
}
script_adjust_opcode_formats(_gamestate);
_kernel->loadKernelNames();
SciVersion soundVersion = _features->detectDoSoundType();