aboutsummaryrefslogtreecommitdiff
path: root/engines/cge2/cge2.cpp
diff options
context:
space:
mode:
authoruruk2014-05-19 16:32:53 +0200
committeruruk2014-05-19 16:32:53 +0200
commit57b9a31ac2b027dc4ddf41ad05c85bae808d4537 (patch)
tree8afa0cf989494d19f4c6db1ce479885c90c56098 /engines/cge2/cge2.cpp
parent6bcbe5e8baca1b5607308039d42f20e9a7d03632 (diff)
downloadscummvm-rg350-57b9a31ac2b027dc4ddf41ad05c85bae808d4537.tar.gz
scummvm-rg350-57b9a31ac2b027dc4ddf41ad05c85bae808d4537.tar.bz2
scummvm-rg350-57b9a31ac2b027dc4ddf41ad05c85bae808d4537.zip
CGE2: Add stubbed Font and Talk.
All to further implement caveUp().
Diffstat (limited to 'engines/cge2/cge2.cpp')
-rw-r--r--engines/cge2/cge2.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/cge2/cge2.cpp b/engines/cge2/cge2.cpp
index 7bb861dd1d..54d3ee4c02 100644
--- a/engines/cge2/cge2.cpp
+++ b/engines/cge2/cge2.cpp
@@ -54,6 +54,7 @@ CGE2Engine::CGE2Engine(OSystem *syst, const ADGameDescription *gameDescription)
_eyeTab[i] = nullptr;
_spare = nullptr;
_commandHandler = nullptr;
+ _infoLine = nullptr;
_quitFlag = false;
_bitmapPalette = nullptr;
@@ -79,6 +80,7 @@ void CGE2Engine::init() {
_eyeTab[i] = new V3D();
_spare = new Spare(this);
_commandHandler = new CommandHandler(this, false);
+ _infoLine = new InfoLine(this, kInfoW);
}
void CGE2Engine::deinit() {
@@ -100,6 +102,7 @@ void CGE2Engine::deinit() {
delete _eye;
delete _spare;
delete _commandHandler;
+ delete _infoLine;
}
bool CGE2Engine::hasFeature(EngineFeature f) const {