summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/video/isa_pc1640_iga.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/video/isa_pc1640_iga.c')
-rw-r--r--src/mess/video/isa_pc1640_iga.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mess/video/isa_pc1640_iga.c b/src/mess/video/isa_pc1640_iga.c
index ca107fcf783..4450a8405e4 100644
--- a/src/mess/video/isa_pc1640_iga.c
+++ b/src/mess/video/isa_pc1640_iga.c
@@ -92,7 +92,7 @@ void isa8_pc1640_iga_device::device_start()
UINT8 g = ( ( i & 0x02 ) ? 0xAA : 0x00 ) + ( ( i & 0x10 ) ? 0x55 : 0x00 );
UINT8 b = ( ( i & 0x01 ) ? 0xAA : 0x00 ) + ( ( i & 0x08 ) ? 0x55 : 0x00 );
- palette_set_color_rgb( machine(), i, r, g, b );
+ m_palette->set_pen_color( i, r, g, b );
}
/* Install 256KB Video ram on our EGA card */