aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorJohannes Schickel2008-07-31 10:52:29 +0000
committerJohannes Schickel2008-07-31 10:52:29 +0000
commiteb9462c1a096a9abad8494b8446721a3e82f8bad (patch)
treeb5ce1aee3bd4ce8a3d68fd33e603a338447d7fac /engines
parent5e0df8ad8e9755e1fcf11d8433052dc11c74e988 (diff)
downloadscummvm-rg350-eb9462c1a096a9abad8494b8446721a3e82f8bad.tar.gz
scummvm-rg350-eb9462c1a096a9abad8494b8446721a3e82f8bad.tar.bz2
scummvm-rg350-eb9462c1a096a9abad8494b8446721a3e82f8bad.zip
Removed debugging leftover.
svn-id: r33464
Diffstat (limited to 'engines')
-rw-r--r--engines/kyra/script_tim.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/engines/kyra/script_tim.cpp b/engines/kyra/script_tim.cpp
index b8fc6713a6..7993fb8de6 100644
--- a/engines/kyra/script_tim.cpp
+++ b/engines/kyra/script_tim.cpp
@@ -617,7 +617,6 @@ int TIMInterpreter::cmd_execOpcode(const uint16 *param) {
if (!_currentTim->opcodes) {
warning("Trying to execute TIM opcode %d without opcode list (file '%s')", opcode, _currentTim->filename);
- fflush(stderr); fflush(stdout);
return 0;
}
@@ -628,7 +627,6 @@ int TIMInterpreter::cmd_execOpcode(const uint16 *param) {
if (!(*_currentTim->opcodes)[opcode]->isValid()) {
warning("Calling unimplemented TIM opcode(0x%.02X/%d) from file '%s'", opcode, opcode, _currentTim->filename);
- fflush(stderr);
return 0;
}