aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/macventure/text.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/macventure/text.cpp b/engines/macventure/text.cpp
index 76ea7dfd96..745def2cc4 100644
--- a/engines/macventure/text.cpp
+++ b/engines/macventure/text.cpp
@@ -43,7 +43,7 @@ TextAsset::TextAsset(MacVentureEngine *engine, ObjID objid, ObjID source, ObjID
void TextAsset::decodeOld() {
Common::SeekableReadStream *res = _container->getItem(_id);
uint16 strLen = res->readUint16BE();
- Common::BitStream32BELSB stream(res);
+ Common::BitStream32BELSB stream(res, true);
char* str = new char[strLen + 1];
bool lowercase = false;
char c;