- Kernel function names are no longer loaded from vocab.999, but are constructed from the hardcoded function table, depending on the SCI version used

- SCI0 games using older graphics functions are now detected by the presence of the "curAngle" selector
- SCI0 games using a SCI1 table (like KQ1 demo version and full version) are detected by the presence of the "sightAngle" selector (as no SCI0 game seems to have it)

svn-id: r42095
This commit is contained in:
Filippos Karapetis 2009-07-04 15:45:04 +00:00
parent fddc5915f7
commit c5522b3766
4 changed files with 52 additions and 67 deletions

View file

@ -203,6 +203,8 @@ void Kernel::mapSelectors() {
FIND_SELECTOR(printLang);
FIND_SELECTOR(subtitleLang);
FIND_SELECTOR(parseLang);
FIND_SELECTOR(curAngle);
FIND_SELECTOR(sightAngle);
FIND_SELECTOR(setVol);
}