summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/model1.cpp
diff options
context:
space:
mode:
author Ivan Vangelista <mesgnet@yahoo.it>2018-11-21 18:13:26 +0100
committer Ivan Vangelista <mesgnet@yahoo.it>2018-11-21 18:13:26 +0100
commitdec633d2dcccb28005d700614d635b577a699b93 (patch)
treed2dcb93fb967226fa0d7bcab6b240ea47fd938e0 /src/mame/drivers/model1.cpp
parent547e7f53bec3da6b9b4949e80a3c3ac235e413ad (diff)
src/mame/video: switched various devices to devcb3 and removed MCFG macros (nw)
Diffstat (limited to 'src/mame/drivers/model1.cpp')
-rw-r--r--src/mame/drivers/model1.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mame/drivers/model1.cpp b/src/mame/drivers/model1.cpp
index ea63a17904f..4ef24124c2c 100644
--- a/src/mame/drivers/model1.cpp
+++ b/src/mame/drivers/model1.cpp
@@ -1701,8 +1701,7 @@ MACHINE_CONFIG_START(model1_state::model1)
MB8421(config, m_dpram, 0);
- MCFG_DEVICE_ADD("tile", S24TILE, 0, 0x3fff)
- MCFG_GFX_PALETTE("palette")
+ S24TILE(config, m_tiles, 0, 0x3fff).set_palette(m_palette);
MCFG_SCREEN_ADD("screen", RASTER)
MCFG_SCREEN_VIDEO_ATTRIBUTES(VIDEO_UPDATE_AFTER_VBLANK )