aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/frotz/processor.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2018-11-14 19:55:14 -0800
committerPaul Gilbert2018-12-08 19:05:59 -0800
commita1d355d0be8dfe0e3c1227a8f17ada609041ece4 (patch)
tree19d7527d5e40ac39a902cec9a9b7bbef6c696cf4 /engines/glk/frotz/processor.cpp
parent7b1b3935b89e119d7a268521adbc39afc605e403 (diff)
downloadscummvm-rg350-a1d355d0be8dfe0e3c1227a8f17ada609041ece4.tar.gz
scummvm-rg350-a1d355d0be8dfe0e3c1227a8f17ada609041ece4.tar.bz2
scummvm-rg350-a1d355d0be8dfe0e3c1227a8f17ada609041ece4.zip
GLK: FROTZ: Move ostream_* flags from GlkInterface to Processor
Diffstat (limited to 'engines/glk/frotz/processor.cpp')
-rw-r--r--engines/glk/frotz/processor.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/glk/frotz/processor.cpp b/engines/glk/frotz/processor.cpp
index 442b0079fe..eaa7310fc7 100644
--- a/engines/glk/frotz/processor.cpp
+++ b/engines/glk/frotz/processor.cpp
@@ -137,7 +137,8 @@ Processor::Processor(OSystem *syst, const GlkGameDescription &gameDesc) :
zargc(0), _decoded(nullptr), _encoded(nullptr), _resolution(0),
_randomInterval(0), _randomCtr(0), first_restart(true), script_valid(false),
_bufPos(0), _locked(false), _prevC('\0'), script_width(0),
- sfp(nullptr), rfp(nullptr), pfp(nullptr) {
+ sfp(nullptr), rfp(nullptr), pfp(nullptr), ostream_screen(true), ostream_script(false),
+ ostream_memory(false), ostream_record(false), istream_replay(false), message(false) {
static const Opcode OP0_OPCODES[16] = {
&Processor::z_rtrue,
&Processor::z_rfalse,