aboutsummaryrefslogtreecommitdiff
path: root/engines/cge/cge.cpp
diff options
context:
space:
mode:
authorStrangerke2011-11-28 18:54:01 +0100
committerStrangerke2011-11-28 18:54:01 +0100
commitb3c9b51e4638afa3fb2afd32d2a9b3e16153d0e3 (patch)
tree50173327fcb010685a82ab9cc9dcc457b9b3c6ea /engines/cge/cge.cpp
parent64c0b0faa74867f33156e9c91516dc6ae68464d8 (diff)
downloadscummvm-rg350-b3c9b51e4638afa3fb2afd32d2a9b3e16153d0e3.tar.gz
scummvm-rg350-b3c9b51e4638afa3fb2afd32d2a9b3e16153d0e3.tar.bz2
scummvm-rg350-b3c9b51e4638afa3fb2afd32d2a9b3e16153d0e3.zip
CGE: Add to the console a function to display boundaries
Diffstat (limited to 'engines/cge/cge.cpp')
-rw-r--r--engines/cge/cge.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/cge/cge.cpp b/engines/cge/cge.cpp
index 87654c53f4..34e7d3f2f9 100644
--- a/engines/cge/cge.cpp
+++ b/engines/cge/cge.cpp
@@ -54,6 +54,7 @@ CGEEngine::CGEEngine(OSystem *syst, const ADGameDescription *gameDescription)
_pocPtr = 0;
_bitmapPalette = NULL;
_quitFlag = false;
+ _showBoundariesFl = false;
}
void CGEEngine::initSceneValues() {
@@ -89,7 +90,7 @@ void CGEEngine::init() {
_font = new Font(this, "CGE");
_text = new Text(this, "CGE");
_talk = NULL;
- _vga = new Vga();
+ _vga = new Vga(this);
_sys = new System(this);
_pocLight = new PocLight(this);
for (int i = 0; i < kPocketNX; i++)