aboutsummaryrefslogtreecommitdiff
path: root/engines/dm/gfx.h
diff options
context:
space:
mode:
authorWinterGrascph2016-05-13 00:54:01 +0200
committerBendegúz Nagy2016-08-26 23:02:22 +0200
commit253730787de69da9b914f41138f7a54214f41eff (patch)
tree227661e49d15073d0f92727e58b88bdc3cc17acd /engines/dm/gfx.h
parentf39b22f32133cd40c20996e75dfcb167c91e2ae2 (diff)
downloadscummvm-rg350-253730787de69da9b914f41138f7a54214f41eff.tar.gz
scummvm-rg350-253730787de69da9b914f41138f7a54214f41eff.tar.bz2
scummvm-rg350-253730787de69da9b914f41138f7a54214f41eff.zip
DM: Finish implementing ornament masks in DungeonMan::getSquare
Diffstat (limited to 'engines/dm/gfx.h')
-rw-r--r--engines/dm/gfx.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/dm/gfx.h b/engines/dm/gfx.h
index b2c29bf8c6..5670a5657c 100644
--- a/engines/dm/gfx.h
+++ b/engines/dm/gfx.h
@@ -87,6 +87,7 @@ class DisplayMan {
void loadIntoBitmap(uint16 index, byte *destBitmap); // @ F0466_EXPAND_GraphicToBitmap
void unpackGraphics();
void drawWallSetBitmap(byte *bitmap, Frame &f); // @ F0100_DUNGEONVIEW_DrawWallSetBitmap
+ void drawSquareD3L(direction dir, int16 posX, int16 posY); // @ F0116_DUNGEONVIEW_DrawSquareD3L
public:
DisplayMan(DMEngine *dmEngine);
~DisplayMan();
@@ -117,7 +118,7 @@ public:
void clearBitmap(byte *bitmap, uint16 width, uint16 height, Color color);
void clearScreen(Color color);
- void drawDungeon(direction dir, uint16 posX, uint16 posY); // @ F0128_DUNGEONVIEW_Draw_CPSF
+ void drawDungeon(direction dir, int16 posX, int16 posY); // @ F0128_DUNGEONVIEW_Draw_CPSF
void updateScreen();
};