diff options
author | WinterGrascph | 2016-05-12 10:16:00 +0200 |
---|---|---|
committer | Bendegúz Nagy | 2016-08-26 23:02:22 +0200 |
commit | bf78e63d2e900b73c592c8087156ea261cd35354 (patch) | |
tree | 7b7bcf6ff77af15b2238c485a08706e729a794fe /engines/dm | |
parent | 853b87f19e2ad99db495be9e86a312d8775ed37c (diff) | |
download | scummvm-rg350-bf78e63d2e900b73c592c8087156ea261cd35354.tar.gz scummvm-rg350-bf78e63d2e900b73c592c8087156ea261cd35354.tar.bz2 scummvm-rg350-bf78e63d2e900b73c592c8087156ea261cd35354.zip |
DM: Add missing cross-references in gfx.h
Diffstat (limited to 'engines/dm')
-rw-r--r-- | engines/dm/gfx.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/engines/dm/gfx.h b/engines/dm/gfx.h index 34bb8cf991..3199fb8b99 100644 --- a/engines/dm/gfx.h +++ b/engines/dm/gfx.h @@ -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(); @@ -94,7 +95,7 @@ public: 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(); }; |