diff options
author | Travis Howell | 2004-02-16 03:08:17 +0000 |
---|---|---|
committer | Travis Howell | 2004-02-16 03:08:17 +0000 |
commit | af305a31c3f678c554862f271bc5455021964761 (patch) | |
tree | 3244691d15474963881310909affea918631a07d /scumm | |
parent | d5bf1699ca124de6959a76d3d5b75ca0beeb2ecf (diff) | |
download | scummvm-rg350-af305a31c3f678c554862f271bc5455021964761.tar.gz scummvm-rg350-af305a31c3f678c554862f271bc5455021964761.tar.bz2 scummvm-rg350-af305a31c3f678c554862f271bc5455021964761.zip |
Update comment
Remove duplicate code
svn-id: r12911
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/script_v6.cpp | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/scumm/script_v6.cpp b/scumm/script_v6.cpp index cd2f979dd8..ede4f88d20 100644 --- a/scumm/script_v6.cpp +++ b/scumm/script_v6.cpp @@ -850,10 +850,7 @@ void ScummEngine_v6::o6_drawObject() { int state = pop(); int obj = pop(); - // FIXME: Why is the following here? Is it based on disassembly, or was - // it simply added to work around a bug (in ScummVM or scripts) ? - // In either case, the answer should be put into a comment (replacing this - // one, of course :-) + // This is based on disassembly if (state == 0) state = 1; @@ -2601,11 +2598,6 @@ void ScummEngine_v6::o6_kernelSetFunctions() { } } else { switch (args[0]) { - case 1: - // Used to restore images when decorating cake in - // Fatty Bear's Birthday Surprise - warning("o6_kernelSetFunctions: stub1()"); - break; case 3: warning("o6_kernelSetFunctions: nothing in 3"); break; @@ -2711,12 +2703,6 @@ void ScummEngine_v6::o6_kernelGetFunctions() { getStackList(args, ARRAYSIZE(args)); switch (args[0]) { - case 1: - // Used to store images when decorating cake in - // Fatty Bear's Birthday Surprise - warning("o6_kernelGetFunctions: stub1()"); - push(0); - break; case 113: // This is used for the Sam & Max paint-by-numbers mini-game // to find out what color to change. I think that what we have |