diff options
| author | Bendegúz Nagy | 2016-08-19 19:00:58 +0200 |
|---|---|---|
| committer | Bendegúz Nagy | 2016-08-26 23:02:22 +0200 |
| commit | 80f2199151d2a005bbae64e9744477a5e52bfc52 (patch) | |
| tree | 20db1e862b85414fe9859c6874b0ac9a6f7a4a43 /engines/dm/gfx.cpp | |
| parent | 6aabe84bf6d117a9e9523eaf664cfb2fd2e04fc1 (diff) | |
| download | scummvm-rg350-80f2199151d2a005bbae64e9744477a5e52bfc52.tar.gz scummvm-rg350-80f2199151d2a005bbae64e9744477a5e52bfc52.tar.bz2 scummvm-rg350-80f2199151d2a005bbae64e9744477a5e52bfc52.zip | |
DM: Clear check some warnings, complete minor functions
Diffstat (limited to 'engines/dm/gfx.cpp')
| -rw-r--r-- | engines/dm/gfx.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/engines/dm/gfx.cpp b/engines/dm/gfx.cpp index e6996d3ed4..44b1cc1bb9 100644 --- a/engines/dm/gfx.cpp +++ b/engines/dm/gfx.cpp @@ -2147,7 +2147,8 @@ void DisplayMan::f128_drawDungeon(Direction dir, int16 posX, int16 posY) { } void DisplayMan::f98_drawFloorAndCeiling() { - warning(false, "f98_drawFloorAndCeiling doesn't do anything"); + Box box(0, 223, 0, 36); + f135_fillBoxBitmap(_g296_bitmapViewport, box, k0_ColorBlack, k112_byteWidthViewport, k136_heightViewport); _g297_drawFloorAndCeilingRequested = false; } @@ -3735,9 +3736,7 @@ byte* DisplayMan::f492_getDerivedBitmap(int16 derivedBitmapIndex) { return _g638_derivedBitmaps[derivedBitmapIndex]; } -void DisplayMan::f493_addDerivedBitmap(int16 derivedBitmapIndex) { - warning(false, "f493_addDerivedBitmap DOES NOTHING"); -} +void DisplayMan::f493_addDerivedBitmap(int16 derivedBitmapIndex) {} void DisplayMan::f480_releaseBlock(uint16 index) { delete[] _g638_derivedBitmaps[index]; |
