aboutsummaryrefslogtreecommitdiff
path: root/engines/made/script.cpp
diff options
context:
space:
mode:
authorBenjamin Haisch2008-04-23 20:12:06 +0000
committerBenjamin Haisch2008-04-23 20:12:06 +0000
commitd0ad5867e0d8ecb21aee7abfe0e7beb8eacfcf25 (patch)
tree77bafd6d29d67402ed0d22db8c43b64c4eb5f926 /engines/made/script.cpp
parentc841481aa37e673af7cadda41da6dbc77514a8d4 (diff)
downloadscummvm-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.cpp2
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]);