Skip to content

Commit

Permalink
DM: Add missing cross-references in gfx.h
Browse files Browse the repository at this point in the history
  • Loading branch information
WinterGrascph committed Aug 26, 2016
1 parent 853b87f commit bf78e63
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions engines/dm/gfx.h
Expand Up @@ -65,9 +65,10 @@ class DisplayMan {

byte **_bitmaps;
byte *getCurrentVgaBuffer();
void loadIntoBitmap(uint16 index, byte *destBitmap);
// the original functions has two position parameters, but they are always set to zero
void loadIntoBitmap(uint16 index, byte *destBitmap); // @ F0466_EXPAND_GraphicToBitmap
void unpackGraphics();
void drawWallSetBitmap(byte *bitmap, Frame &f, uint16 srcWidth);
void drawWallSetBitmap(byte *bitmap, Frame &f, uint16 srcWidth); // @ F0100_DUNGEONVIEW_DrawWallSetBitmap
public:
DisplayMan(DMEngine *dmEngine);
~DisplayMan();
Expand All @@ -94,7 +95,7 @@ class DisplayMan {

void clearBitmap(byte *bitmap, uint16 width, uint16 height, Color color);
void clearScreen(Color color);
void drawDungeon(direction dir, uint16 posX, uint16 posY);
void drawDungeon(direction dir, uint16 posX, uint16 posY); // @ F0128_DUNGEONVIEW_Draw_CPSF
void updateScreen();
};

Expand Down

0 comments on commit bf78e63

Please sign in to comment.