mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-15 22:28:10 +00:00
Minor cleanup
svn-id: r22215
This commit is contained in:
parent
d9ed515f90
commit
80bc64b951
@ -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;
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user