aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/inter_v6.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/gob/inter_v6.cpp')
-rw-r--r--engines/gob/inter_v6.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/engines/gob/inter_v6.cpp b/engines/gob/inter_v6.cpp
index 7b7ea06cf7..999ff4b0a4 100644
--- a/engines/gob/inter_v6.cpp
+++ b/engines/gob/inter_v6.cpp
@@ -124,6 +124,13 @@ void Inter_v6::o6_playVmdOrMusic() {
props.x, props.y, props.startFrame, props.lastFrame,
props.palCmd, props.palStart, props.palEnd, props.flags);
+ // WORKAROUND: When taking the music sheet from Dr. Dramish's car,
+ // the video that lets the sheet vanish is missing. We'll
+ // play the one where the sheet is already gone instead.
+ if (!strcmp(fileName, "MXRAMPART") &&
+ !scumm_stricmp(_vm->_game->_curTotFile, "EMAM2013.TOT"))
+ strcpy(fileName, "PLCOFDR2");
+
if (!strcmp(fileName, "RIEN")) {
_vm->_vidPlayer->closeAll();
return;