aboutsummaryrefslogtreecommitdiff
path: root/engines/cge/vga13h.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2011-07-10 09:57:19 +1000
committerPaul Gilbert2011-07-10 09:57:19 +1000
commit817a52ed56abc172b158d794501f2bff0ab70e94 (patch)
tree2f89a38323f2f99a303a51de03b7ddbc6ff9fc01 /engines/cge/vga13h.cpp
parent1e83e27925e121ee50b3ee66f5fb007e2d6b338f (diff)
downloadscummvm-rg350-817a52ed56abc172b158d794501f2bff0ab70e94.tar.gz
scummvm-rg350-817a52ed56abc172b158d794501f2bff0ab70e94.tar.bz2
scummvm-rg350-817a52ed56abc172b158d794501f2bff0ab70e94.zip
CGE: Created a HorizLine stub class to hold the HL sprite array
Diffstat (limited to 'engines/cge/vga13h.cpp')
-rw-r--r--engines/cge/vga13h.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/engines/cge/vga13h.cpp b/engines/cge/vga13h.cpp
index e1309c96f0..fb1c89ef5e 100644
--- a/engines/cge/vga13h.cpp
+++ b/engines/cge/vga13h.cpp
@@ -1360,4 +1360,15 @@ void Bitmap::hide(int x, int y) {
}
}
+/*--------------------------------------------------------------------------*/
+
+HorizLine::HorizLine(CGEEngine *vm): Sprite(vm, NULL) {
+ // Set the sprite list
+ BMP_PTR *HL = new BMP_PTR[2];
+ HL[0] = new Bitmap("HLINE", true);
+ HL[1] = NULL;
+
+ setShapeList(HL);
+}
+
} // End of namespace CGE