summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/drawgfx.h
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2016-09-03 10:01:39 -0400
committer AJR <ajrhacker@users.noreply.github.com>2016-09-03 10:01:39 -0400
commita237f50680afcae5fc763fc80fa07b3dd08b24eb (patch)
treee86717afcc37ff2d796fc46d734d2f7084b3611c /src/emu/drawgfx.h
parent0a8652e03f82e8bda55dcea445ce88b1c5038d1c (diff)
More consistent use of integer types in tilemap_t and other graphics-related classes (nw)
- Define indirect_pen_t, requiring a slight reordering of emu.h due to an unsurprising dependency
Diffstat (limited to 'src/emu/drawgfx.h')
-rw-r--r--src/emu/drawgfx.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/drawgfx.h b/src/emu/drawgfx.h
index cebf2cb6e4c..a5864511c2f 100644
--- a/src/emu/drawgfx.h
+++ b/src/emu/drawgfx.h
@@ -152,7 +152,7 @@ public:
gfx_element();
#endif
gfx_element(palette_device &palette, const gfx_layout &gl, const UINT8 *srcdata, UINT32 xormask, UINT32 total_colors, UINT32 color_base);
- gfx_element(palette_device &palette, UINT8 *base, UINT32 width, UINT32 height, UINT32 rowbytes, UINT32 total_colors, UINT32 color_base, UINT32 color_granularity);
+ gfx_element(palette_device &palette, UINT8 *base, UINT16 width, UINT16 height, UINT32 rowbytes, UINT32 total_colors, UINT32 color_base, UINT32 color_granularity);
// getters
palette_device &palette() const { return *m_palette; }