[Scummvm-git-logs] scummvm master -> 97d444a569ac13023acebffa62f2d87e8b1e0eab

m-kiewitz m_kiewitz at users.sourceforge.net
Wed Sep 21 21:46:39 CEST 2016


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
97d444a569 SCI: Fix kernel signature comment


Commit: 97d444a569ac13023acebffa62f2d87e8b1e0eab
    https://github.com/scummvm/scummvm/commit/97d444a569ac13023acebffa62f2d87e8b1e0eab
Author: Martin Kiewitz (m_kiewitz at users.sourceforge.net)
Date: 2016-09-21T21:46:15+02:00

Commit Message:
SCI: Fix kernel signature comment

Changed paths:
    engines/sci/engine/kernel.cpp



diff --git a/engines/sci/engine/kernel.cpp b/engines/sci/engine/kernel.cpp
index d764a88..c03504d 100644
--- a/engines/sci/engine/kernel.cpp
+++ b/engines/sci/engine/kernel.cpp
@@ -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;





More information about the Scummvm-git-logs mailing list