diff options
author | 2008-12-04 10:17:17 +0000 | |
---|---|---|
committer | 2008-12-04 10:17:17 +0000 | |
commit | 60bc02ae1bb9c2618901abf6b5f24c02561b4547 (patch) | |
tree | 2ab801a7daa5c9a5f947c24822d66a3d2b5c349c /src/emu/drawgfx.h | |
parent | 2c3a713213844d1d99c840acf1e7882d6e83048d (diff) |
Removed fillbitmap() macro in favor of direct calls to bitmap_fill().
Note that the parameters to the latter are in a different order
(bitmap, clip, color). [Atari Ace]
Diffstat (limited to 'src/emu/drawgfx.h')
-rw-r--r-- | src/emu/drawgfx.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/emu/drawgfx.h b/src/emu/drawgfx.h index e9fa5fe9943..89ae33ecbe8 100644 --- a/src/emu/drawgfx.h +++ b/src/emu/drawgfx.h @@ -72,9 +72,6 @@ enum MACROS ***************************************************************************/ -/* map old fillbitmap to new shared bitmap_fill code */ -#define fillbitmap(dest, pen, clip) bitmap_fill(dest, clip, pen) - /* these macros describe gfx_layouts in terms of fractions of a region */ /* they can be used for total, planeoffset, xoffset, yoffset */ #define RGN_FRAC(num,den) (0x80000000 | (((num) & 0x0f) << 27) | (((den) & 0x0f) << 23)) |