diff options
-rw-r--r-- | engines/simon/simon.cpp | 2 | ||||
-rw-r--r-- | engines/simon/vga.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/engines/simon/simon.cpp b/engines/simon/simon.cpp index af5292382d..46de8a3a5d 100644 --- a/engines/simon/simon.cpp +++ b/engines/simon/simon.cpp @@ -2517,7 +2517,7 @@ void SimonEngine::waitForSync(uint a) { void SimonEngine::skipSpeech() { _sound->stopVoice(); - if (getBitFlag(28) == false) { + if (!getBitFlag(28)) { setBitFlag(14, true); if (getGameType() == GType_FF) { _variableArray[103] = 5; diff --git a/engines/simon/vga.cpp b/engines/simon/vga.cpp index 03faf53f1b..fcf10816fd 100644 --- a/engines/simon/vga.cpp +++ b/engines/simon/vga.cpp @@ -971,7 +971,7 @@ void SimonEngine::drawImages_Feeble(VC10_state *state) { if (state->flags & kDFMasked) { - if (getBitFlag(81) == false) { + if (!getBitFlag(81)) { if (state->x > _feebleRect.right) return; if (state->y > _feebleRect.bottom) |