aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/director/archive.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/engines/director/archive.cpp b/engines/director/archive.cpp
index 31b421566c..de3a866524 100644
--- a/engines/director/archive.cpp
+++ b/engines/director/archive.cpp
@@ -423,7 +423,10 @@ bool RIFXArchive::openStream(Common::SeekableReadStream *stream, uint32 startOff
tag == MKTAG('D', 'I', 'B', ' ') ||
tag == MKTAG('R', 'T', 'E', '0') ||
tag == MKTAG('R', 'T', 'E', '1') ||
- tag == MKTAG('R', 'T', 'E', '2'))
+ tag == MKTAG('R', 'T', 'E', '2') ||
+ tag == MKTAG('L', 'c', 't', 'x') ||
+ tag == MKTAG('L', 'n', 'a', 'm') ||
+ tag == MKTAG('L', 's', 'c', 'r'))
_types[tag][i] = res;
}