diff options
author | Filippos Karapetis | 2010-01-26 15:39:23 +0000 |
---|---|---|
committer | Filippos Karapetis | 2010-01-26 15:39:23 +0000 |
commit | 0f7690206826cfbbd8a2c6c30695a764475bc2aa (patch) | |
tree | f314b0e1f0c5c9e7d92273665bed840a63d4778e | |
parent | 36c2243c4880524a3fb97a10f68ee08fceaaab0b (diff) | |
download | scummvm-rg350-0f7690206826cfbbd8a2c6c30695a764475bc2aa.tar.gz scummvm-rg350-0f7690206826cfbbd8a2c6c30695a764475bc2aa.tar.bz2 scummvm-rg350-0f7690206826cfbbd8a2c6c30695a764475bc2aa.zip |
Mention that the signature of kUnload has been set like this because of the SQ1 bug
svn-id: r47569
-rw-r--r-- | engines/sci/engine/kernel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/engine/kernel.cpp b/engines/sci/engine/kernel.cpp index 0a543eec56..27fbc9f55d 100644 --- a/engines/sci/engine/kernel.cpp +++ b/engines/sci/engine/kernel.cpp @@ -185,7 +185,7 @@ struct SciKernelFunction { SciKernelFunction kfunct_mappers[] = { /*00*/ DEFUN("Load", kLoad, "iii*"), - /*01*/ DEFUN("UnLoad", kUnLoad, "i.*"), + /*01*/ DEFUN("UnLoad", kUnLoad, "i.*"), // Work around SQ1 bug, when exiting the Ulence flats bar /*02*/ DEFUN("ScriptID", kScriptID, "Ioi*"), /*03*/ DEFUN("DisposeScript", kDisposeScript, "Oii*"), // Work around QfG1 bug /*04*/ DEFUN("Clone", kClone, "o"), |