aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm/gfx.h
diff options
context:
space:
mode:
authorMax Horn2007-03-10 00:34:20 +0000
committerMax Horn2007-03-10 00:34:20 +0000
commitaba0cd04d667ed9aa177e485518f63ed4429c990 (patch)
treece8ba6559f72040c4a78263722b7b700458983c3 /engines/scumm/gfx.h
parent728d01cb1788a24383c0ffabba6428e35ba88148 (diff)
downloadscummvm-rg350-aba0cd04d667ed9aa177e485518f63ed4429c990.tar.gz
scummvm-rg350-aba0cd04d667ed9aa177e485518f63ed4429c990.tar.bz2
scummvm-rg350-aba0cd04d667ed9aa177e485518f63ed4429c990.zip
SCUMM: got rid of the _bompActorPalettePtr member var (which was only used as a hidden param to drawBomp); turned drawBomp into a regular function (used to be a ScummEngine member method)
svn-id: r26045
Diffstat (limited to 'engines/scumm/gfx.h')
-rw-r--r--engines/scumm/gfx.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/engines/scumm/gfx.h b/engines/scumm/gfx.h
index a4683095a2..4df50a7053 100644
--- a/engines/scumm/gfx.h
+++ b/engines/scumm/gfx.h
@@ -170,21 +170,6 @@ struct ColorCycle {
byte end;
};
-/** Bomp graphics data, used as parameter to ScummEngine::drawBomp. */
-struct BompDrawData {
- Graphics::Surface dst;
-
- int x, y;
- byte scale_x, scale_y;
- const byte *dataptr;
- int srcwidth, srcheight;
- uint16 shadowMode;
-
- byte *maskPtr;
-
- BompDrawData() { memset(this, 0, sizeof(*this)); }
-};
-
struct StripTable;
#define CHARSET_MASK_TRANSPARENCY 253