diff options
Diffstat (limited to 'engines/cge2/bitmap.h')
-rw-r--r-- | engines/cge2/bitmap.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/engines/cge2/bitmap.h b/engines/cge2/bitmap.h index 88ab3d8bd8..bcc51d874f 100644 --- a/engines/cge2/bitmap.h +++ b/engines/cge2/bitmap.h @@ -61,7 +61,6 @@ class Bitmap { public: uint16 _w; uint16 _h; - uint8 *_m; uint8 *_v; int32 _map; HideDesc *_b; @@ -74,12 +73,11 @@ public: ~Bitmap(); void setVM(CGE2Engine *vm); - Bitmap *code(); + Bitmap *code(uint8 *map); Bitmap &operator=(const Bitmap &bmp); void release(); void hide(int16 x, int16 y); void show(int16 x, int16 y); - void xShow(int16 x, int16 y); bool solidAt(int16 x, int16 y); void xLatPos(V2D& p); bool moveHi(); |