aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/titanic/npcs/maitre_d.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/engines/titanic/npcs/maitre_d.cpp b/engines/titanic/npcs/maitre_d.cpp
index e944af81c1..a45f48523a 100644
--- a/engines/titanic/npcs/maitre_d.cpp
+++ b/engines/titanic/npcs/maitre_d.cpp
@@ -78,6 +78,11 @@ void CMaitreD::load(SimpleFile *file) {
_timerId = file->readNumber();
CTrueTalkNPC::load(file);
+
+ // WORKAROUND: The back view of the MaitreD from close to the table is dodgy
+ // in the original. And unneeded anyway, since he's also part of the background
+ if (_name == "MaitreLoop03")
+ _visible = false;
}
bool CMaitreD::RestaurantMusicChanged(CRestaurantMusicChanged *msg) {