diff options
Diffstat (limited to 'engines/m4/ws_sequence.cpp')
-rw-r--r-- | engines/m4/ws_sequence.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/m4/ws_sequence.cpp b/engines/m4/ws_sequence.cpp index 1f3c977609..79869a81d0 100644 --- a/engines/m4/ws_sequence.cpp +++ b/engines/m4/ws_sequence.cpp @@ -226,7 +226,7 @@ bool Sequence::runProgram() { while (!done) { Instruction instruction; _code->loadInstruction(instruction); - if (sequenceCommandsTable[instruction.instr] != NULL) + if (sequenceCommandsTable[instruction.instr] != 0) done = !(this->*sequenceCommandsTable[instruction.instr])(instruction); else { fflush(stdout); /*g_system->delayMillis(1000);*/ } } |