summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/util/bitmap.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/util/bitmap.h')
-rw-r--r--src/lib/util/bitmap.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/util/bitmap.h b/src/lib/util/bitmap.h
index 1de665cda2d..a82ec7eebfe 100644
--- a/src/lib/util/bitmap.h
+++ b/src/lib/util/bitmap.h
@@ -152,8 +152,8 @@ public:
// operations
void set_palette(palette_t *palette);
- void fill(rgb_t color) { fill(color, m_cliprect); }
- void fill(rgb_t color, const rectangle &cliprect);
+ void fill(UINT32 color) { fill(color, m_cliprect); }
+ void fill(UINT32 color, const rectangle &cliprect);
void plot_box(int x, int y, int width, int height, UINT32 color)
{
rectangle clip(x, x + width - 1, y, y + height - 1);