aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/glk/streams.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/glk/streams.cpp b/engines/glk/streams.cpp
index cd7130fb35..b491b89dfe 100644
--- a/engines/glk/streams.cpp
+++ b/engines/glk/streams.cpp
@@ -33,8 +33,8 @@
namespace Glk {
Stream::Stream(Streams *streams, bool readable, bool writable, uint32 rock, bool unicode) :
- _streams(streams), _readable(readable), _writable(writable), _readCount(0),
- _writeCount(0), _prev(nullptr), _next(nullptr), _rock(0) {
+ _streams(streams), _readable(readable), _writable(writable), _rock(0), _unicode(unicode),
+ _readCount(0), _writeCount(0), _prev(nullptr), _next(nullptr) {
}
Stream::~Stream() {