summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/eolith.c
diff options
context:
space:
mode:
author Zsolt Vasvari <zsoltvas@mamedev.org>2008-03-22 06:43:29 +0000
committer Zsolt Vasvari <zsoltvas@mamedev.org>2008-03-22 06:43:29 +0000
commit4f0b3c83db9fff6407edba424a0c9e4c26c6eb80 (patch)
treeef3d070baa3f6d0cee861eb1211e521d6996ca5b /src/mame/drivers/eolith.c
parentd2b44c842f9e106db38fe9536ea52539381bd60c (diff)
eolith.c: Same modifications as dgpix -- almost identical hardware
dgpix.c: fixed video RAM masking I screwed up with the last update
Diffstat (limited to 'src/mame/drivers/eolith.c')
-rw-r--r--src/mame/drivers/eolith.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mame/drivers/eolith.c b/src/mame/drivers/eolith.c
index 4143a28d198..345913bd682 100644
--- a/src/mame/drivers/eolith.c
+++ b/src/mame/drivers/eolith.c
@@ -268,10 +268,13 @@ static MACHINE_DRIVER_START( eolith45 )
MDRV_SCREEN_ADD("main", RASTER)
MDRV_SCREEN_REFRESH_RATE(60)
MDRV_SCREEN_VBLANK_TIME(ATTOSECONDS_IN_USEC(0))
- MDRV_SCREEN_FORMAT(BITMAP_FORMAT_RGB15)
+ MDRV_SCREEN_FORMAT(BITMAP_FORMAT_INDEXED16)
MDRV_SCREEN_SIZE(512, 512)
MDRV_SCREEN_VISIBLE_AREA(0, 319, 0, 239)
+ MDRV_PALETTE_INIT(BBBBB_GGGGG_RRRRR)
+ MDRV_PALETTE_LENGTH(32768)
+
MDRV_VIDEO_START(eolith)
MDRV_VIDEO_UPDATE(eolith)