aboutsummaryrefslogtreecommitdiff
path: root/engines/cge/cge.cpp
diff options
context:
space:
mode:
authorStrangerke2011-06-30 08:30:23 +0200
committerStrangerke2011-06-30 08:30:23 +0200
commitf59c910b8f41cfa9eeda88ce5f4d5c2a18b97662 (patch)
treeefbf783048abcd65aed6f7e805f506ced3a83ee8 /engines/cge/cge.cpp
parentb0c9c9122fc678074aba30068e5b36d347208e65 (diff)
downloadscummvm-rg350-f59c910b8f41cfa9eeda88ce5f4d5c2a18b97662.tar.gz
scummvm-rg350-f59c910b8f41cfa9eeda88ce5f4d5c2a18b97662.tar.bz2
scummvm-rg350-f59c910b8f41cfa9eeda88ce5f4d5c2a18b97662.zip
CGE: Some more renaming (wip)
Diffstat (limited to 'engines/cge/cge.cpp')
-rw-r--r--engines/cge/cge.cpp22
1 files changed, 11 insertions, 11 deletions
diff --git a/engines/cge/cge.cpp b/engines/cge/cge.cpp
index 885aa4d492..c921d7c6ba 100644
--- a/engines/cge/cge.cpp
+++ b/engines/cge/cge.cpp
@@ -77,22 +77,22 @@ void CGEEngine::setup() {
InfoLine = new INFO_LINE(this, INFO_W);
_cavLight = new Sprite(this, PR);
DebugLine = new INFO_LINE(this, SCR_WID);
- MB[0] = new Bitmap("BRICK");
+ MB[0] = new Bitmap("BRICK", true);
MB[1] = NULL;
- HL[0] = new Bitmap("HLINE");
+ HL[0] = new Bitmap("HLINE", true);
HL[1] = NULL;
- MC[0] = new Bitmap("MOUSE");
- MC[1] = new Bitmap("DUMMY");
+ MC[0] = new Bitmap("MOUSE", true);
+ MC[1] = new Bitmap("DUMMY", true);
MC[2] = NULL;
- PR[0] = new Bitmap("PRESS");
+ PR[0] = new Bitmap("PRESS", true);
PR[1] = NULL;
- SP[0] = new Bitmap("SPK_L");
- SP[1] = new Bitmap("SPK_R");
+ SP[0] = new Bitmap("SPK_L", true);
+ SP[1] = new Bitmap("SPK_R", true);
SP[2] = NULL;
- LI[0] = new Bitmap("LITE0");
- LI[1] = new Bitmap("LITE1");
- LI[2] = new Bitmap("LITE2");
- LI[3] = new Bitmap("LITE3");
+ LI[0] = new Bitmap("LITE0", true);
+ LI[1] = new Bitmap("LITE1", true);
+ LI[2] = new Bitmap("LITE2", true);
+ LI[3] = new Bitmap("LITE3", true);
LI[4] = NULL;
Snail = new SNAIL(this, false);
Snail_ = new SNAIL(this, true);