diff options
author | Paul Gilbert | 2018-11-12 10:54:59 -0800 |
---|---|---|
committer | Paul Gilbert | 2018-12-08 19:05:59 -0800 |
commit | 7a52f21c0bb267d6851ede650298b1d084493ef6 (patch) | |
tree | bbc154228f0b19486d242d3aa1c22e6fb5472aa4 /engines/gargoyle/frotz/processor.cpp | |
parent | 2c37a949136e4bd6a38daf420eb4638ce8d5f4ae (diff) | |
download | scummvm-rg350-7a52f21c0bb267d6851ede650298b1d084493ef6.tar.gz scummvm-rg350-7a52f21c0bb267d6851ede650298b1d084493ef6.tar.bz2 scummvm-rg350-7a52f21c0bb267d6851ede650298b1d084493ef6.zip |
GLK: FROTZ: Added script/record/transcript/replay methods
Diffstat (limited to 'engines/gargoyle/frotz/processor.cpp')
-rw-r--r-- | engines/gargoyle/frotz/processor.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/gargoyle/frotz/processor.cpp b/engines/gargoyle/frotz/processor.cpp index 934101332d..ac18a23593 100644 --- a/engines/gargoyle/frotz/processor.cpp +++ b/engines/gargoyle/frotz/processor.cpp @@ -136,7 +136,8 @@ Processor::Processor(OSystem *syst, const GargoyleGameDescription *gameDesc) : _finished(0), _sp(nullptr), _fp(nullptr), _frameCount(0), zargc(0), _decoded(nullptr), _encoded(nullptr), _resolution(0), _randomInterval(0), _randomCtr(0), first_restart(true), script_valid(false), - _bufPos(0), _locked(false), _prevC('\0') { + _bufPos(0), _locked(false), _prevC('\0'), script_width(0), + sfp(nullptr), rfp(nullptr), pfp(nullptr) { static const Opcode OP0_OPCODES[16] = { &Processor::z_rtrue, &Processor::z_rfalse, |