diff options
author | Robert Špalek | 2009-11-03 21:34:38 +0000 |
---|---|---|
committer | Robert Špalek | 2009-11-03 21:34:38 +0000 |
commit | b506b9f7c2f24bf7f0b8a281b856b3807f362028 (patch) | |
tree | 4c027d613ec0fd8ed3a1991b7822eb398d9dbe6b | |
parent | 0071829aee9d1bb97402c42d1abcaa17a39b2838 (diff) | |
download | scummvm-rg350-b506b9f7c2f24bf7f0b8a281b856b3807f362028.tar.gz scummvm-rg350-b506b9f7c2f24bf7f0b8a281b856b3807f362028.tar.bz2 scummvm-rg350-b506b9f7c2f24bf7f0b8a281b856b3807f362028.zip |
Removed an old FIXME
svn-id: r45642
-rw-r--r-- | engines/draci/script.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/engines/draci/script.cpp b/engines/draci/script.cpp index acc341c306..14cca84062 100644 --- a/engines/draci/script.cpp +++ b/engines/draci/script.cpp @@ -136,6 +136,9 @@ void Script::setupCommandList() { { "HasBeen", &Script::funcHasBeen }, { "MaxLine", &Script::funcMaxLine }, { "ActPhase", &Script::funcActPhase }, + // The following function is not even defined in the game + // sources, but its number is allocated for internal purposes + // of the old player. { "Cheat", NULL }, }; @@ -982,7 +985,7 @@ int Script::handleMathExpression(Common::MemoryReadStream *reader) const { if (func._handler == NULL) { stk.pop(); - // FIXME: Pushing dummy value for now, but should push return value + // Pushing dummy value stk.push(0); debugC(4, kDraciBytecodeDebugLevel, "\t\tcall: %s (not implemented)", |