Skip to content

Commit

Permalink
SCI: Fix kernel signature comment
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Kiewitz committed Sep 21, 2016
1 parent d373ddf commit 97d444a
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions engines/sci/engine/kernel.cpp
Expand Up @@ -171,8 +171,11 @@ void Kernel::loadSelectorNames() {
// (io) -> optionally integer AND an object
// (i) -> optional integer
// . -> any type
// i* -> optional multiple integers
// .* -> any parameters afterwards (or none)
// i* -> at least one integer, more integers may follow after that
// (i*) -> optional multiple integers
// .* -> at least one parameter of any type and more parameters of any type may follow
// (.*) -> any parameters afterwards (or none)
// * -> means "more of the last parameter may follow (or none at all)", must be at the end of a signature. Is not valid anywhere else.
static uint16 *parseKernelSignature(const char *kernelName, const char *writtenSig) {
const char *curPos;
char curChar;
Expand Down

0 comments on commit 97d444a

Please sign in to comment.