- 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:
parent
fddc5915f7
commit
c5522b3766
4 changed files with 52 additions and 67 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue