summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/tulip1.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/tulip1.cpp')
-rw-r--r--src/mame/drivers/tulip1.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/tulip1.cpp b/src/mame/drivers/tulip1.cpp
index b2af48f7fca..a52a7ae8864 100644
--- a/src/mame/drivers/tulip1.cpp
+++ b/src/mame/drivers/tulip1.cpp
@@ -118,7 +118,7 @@ GFXDECODE_END
MC6845_UPDATE_ROW( tulip1_state::crtc_update_row )
{
- const pen_t *pen = m_palette->pens();
+ pen_t const *const pen = m_palette->pens();
for (int i = 0; i < x_count; i++)
{
@@ -127,7 +127,7 @@ MC6845_UPDATE_ROW( tulip1_state::crtc_update_row )
// draw 8 pixels of the character
for (int x = 0; x < 8; x++)
- bitmap.pix32(y, x + i*8) = pen[BIT(data, 7 - x)];
+ bitmap.pix(y, x + i*8) = pen[BIT(data, 7 - x)];
}
}