diff options
author | Benjamin Haisch | 2008-04-23 20:12:06 +0000 |
---|---|---|
committer | Benjamin Haisch | 2008-04-23 20:12:06 +0000 |
commit | d0ad5867e0d8ecb21aee7abfe0e7beb8eacfcf25 (patch) | |
tree | 77bafd6d29d67402ed0d22db8c43b64c4eb5f926 /engines/made/script.cpp | |
parent | c841481aa37e673af7cadda41da6dbc77514a8d4 (diff) | |
download | scummvm-rg350-d0ad5867e0d8ecb21aee7abfe0e7beb8eacfcf25.tar.gz scummvm-rg350-d0ad5867e0d8ecb21aee7abfe0e7beb8eacfcf25.tar.bz2 scummvm-rg350-d0ad5867e0d8ecb21aee7abfe0e7beb8eacfcf25.zip |
Fixed palette issues when showing the inventory and the menu.
Moved drawing code from drawFlex/drawAnimFrame to drawSurface.
Implemented opcodes:
- o1_VISUALFX
- o1_SCREENLOCK
- o1_SETTIMER
- o1_SETGROUND
- o1_SETCLIP
- o1_SETEXCLUDE
svn-id: r31675
Diffstat (limited to 'engines/made/script.cpp')
-rw-r--r-- | engines/made/script.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/made/script.cpp b/engines/made/script.cpp index 2231f3ed2b..1f5518c685 100644 --- a/engines/made/script.cpp +++ b/engines/made/script.cpp @@ -682,7 +682,7 @@ void ScriptInterpreter::cmd_extend() { byte argc = readByte(); int16 *argv = _stack.getStackPtr(); - debug(4, "func = %d (%s); argc = %d\n", func, extendFuncNames[func], argc); fflush(stdout); + debug(4, "func = %d (%s); argc = %d\n", func, extendFuncNames[func], argc); for (int i = 0; i < argc; i++) debug(4, "argv[%02d] = %04X (%d)\n", i, argv[i], argv[i]); |