SCI: Rename selector_map_t -> SelectorCache and _selectorMap -> _selectorCache

svn-id: r44152
This commit is contained in:
Max Horn 2009-09-17 13:21:42 +00:00
parent b2c386ed00
commit 364640cfd5
10 changed files with 45 additions and 43 deletions

View file

@ -380,8 +380,6 @@ static const char *argtype_description[] = {
};
Kernel::Kernel(ResourceManager *resMan) : _resMan(resMan) {
memset(&_selectorMap, 0, sizeof(_selectorMap)); // FIXME: Remove this once/if we C++ify selector_map_t
loadSelectorNames();
detectSciFeatures();
@ -404,7 +402,7 @@ void Kernel::detectSciFeatures() {
if (version == SCI_VERSION_0_EARLY) {
features |= kFeatureOldScriptHeader | kFeatureOldGfxFunctions;
} else if (version == SCI_VERSION_0_LATE) {
if (_selectorMap.motionCue == -1)
if (_selectorCache.motionCue == -1)
features |= kFeatureOldGfxFunctions;
}