aboutsummaryrefslogtreecommitdiff
path: root/engines/sherlock/tattoo
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sherlock/tattoo')
-rw-r--r--engines/sherlock/tattoo/tattoo_people.cpp9
-rw-r--r--engines/sherlock/tattoo/tattoo_user_interface.cpp3
2 files changed, 12 insertions, 0 deletions
diff --git a/engines/sherlock/tattoo/tattoo_people.cpp b/engines/sherlock/tattoo/tattoo_people.cpp
index 458cc1a9c2..0eecfe05c4 100644
--- a/engines/sherlock/tattoo/tattoo_people.cpp
+++ b/engines/sherlock/tattoo/tattoo_people.cpp
@@ -314,6 +314,7 @@ void TattooPerson::gotoStand() {
case WALK_DOWNLEFT: _sequenceNumber = STOP_DOWNLEFT;break;
case WALK_LEFT: _sequenceNumber = STOP_LEFT; break;
case WALK_UPLEFT: _sequenceNumber = STOP_UPLEFT; break;
+ default: break;
}
}
@@ -439,6 +440,8 @@ void TattooPerson::setWalking() {
case WALK_RIGHT:
_sequenceNumber = WALK_DOWNRIGHT;
break;
+ default:
+ break;
}
} else if (_delta.y < -1500) {
if (_sequenceNumber == WALK_LEFT || _sequenceNumber == WALK_RIGHT) {
@@ -455,6 +458,8 @@ void TattooPerson::setWalking() {
case WALK_RIGHT:
_sequenceNumber = WALK_UPRIGHT;
break;
+ default:
+ break;
}
}
} else {
@@ -773,6 +778,8 @@ void TattooPerson::updateNPC() {
case NPCPATH_IFFLAG_GOTO_LABEL:
_npcIndex += 4;
break;
+ default:
+ break;
}
}
break;
@@ -819,6 +826,8 @@ void TattooPerson::updateNPC() {
case NPCPATH_IFFLAG_GOTO_LABEL:
_npcIndex += 4;
break;
+ default:
+ break;
}
}
}
diff --git a/engines/sherlock/tattoo/tattoo_user_interface.cpp b/engines/sherlock/tattoo/tattoo_user_interface.cpp
index 1cb0220bba..2b7b7fb5f4 100644
--- a/engines/sherlock/tattoo/tattoo_user_interface.cpp
+++ b/engines/sherlock/tattoo/tattoo_user_interface.cpp
@@ -857,6 +857,9 @@ void TattooUserInterface::drawMaskArea(bool mode) {
maskArea(*_mask, Common::Point(xp, 203));
maskArea(*_mask1, Common::Point(124 + xp, 239));
break;
+
+ default:
+ break;
}
}
}