diff options
-rw-r--r-- | engines/director/stxt.cpp | 2 | ||||
-rw-r--r-- | engines/director/stxt.h | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/engines/director/stxt.cpp b/engines/director/stxt.cpp index 398b9a6513..5d5515b4c6 100644 --- a/engines/director/stxt.cpp +++ b/engines/director/stxt.cpp @@ -24,7 +24,7 @@ namespace Director { -Stxt::Stxt (Common::SeekableSubReadStreamEndian &textStream) { +Stxt::Stxt(Common::SeekableSubReadStreamEndian &textStream) { // TODO: Side effects on textStream make this a little hard to understand in context? uint32 unk1 = textStream.readUint32(); uint32 strLen = textStream.readUint32(); diff --git a/engines/director/stxt.h b/engines/director/stxt.h index 7ac1ca51cd..116a17ab68 100644 --- a/engines/director/stxt.h +++ b/engines/director/stxt.h @@ -29,7 +29,8 @@ namespace Director { class Stxt { public: - Stxt (Common::SeekableSubReadStreamEndian &textStream); + Stxt(Common::SeekableSubReadStreamEndian &textStream); + public: Common::String _ftext; uint32 _fontId; |