Added seChanged the warning displayed when a selector can't be mapped to a debugC - it's perfectly normal not to find certain selectors in certain SCI versions. Also, fixed the SCI version enums

svn-id: r42169
This commit is contained in:
Filippos Karapetis 2009-07-06 11:15:42 +00:00
parent 1f3f4ccdd2
commit bceacbd922
2 changed files with 3 additions and 3 deletions

View file

@ -75,8 +75,8 @@ enum SciGameVersions {
SCI_VERSION_01_VGA = 3,
SCI_VERSION_01_VGA_ODD = 4,
SCI_VERSION_1 = 5,
SCI_VERSION_1_1 = 7,
SCI_VERSION_32 = 8
SCI_VERSION_1_1 = 6,
SCI_VERSION_32 = 7
};
extern const char *versionNames[8];

View file

@ -472,7 +472,7 @@ int Kernel::findSelector(const char *selectorName) const {
return pos;
}
warning("Could not map '%s' to any selector", selectorName);
debugC(2, kDebugLevelVM, "Could not map '%s' to any selector\n", selectorName);
return -1;
}