diff options
author | 2014-02-16 17:32:10 +0000 | |
---|---|---|
committer | 2014-02-16 17:32:10 +0000 | |
commit | 7cde79cd9cc8d2fa5ecda0709c15d0f39af92646 (patch) | |
tree | cf6a74146f83c43bc272302c0a6f7ffccdf364e9 /src/mess/drivers/tim100.c | |
parent | 36d081e756af22894f32c3497202925ce8d7f873 (diff) |
Created gfxdecode_device instead of using machine fixed gfxdecode [Miodrag Milanovic]
Updated all devices and drivers for using it.
out of whatsnew:
Note that it is made to work same as before, in some cases it can be more
logic to move gfxdevice into subdevice itself then to keep it in main driver.
Diffstat (limited to 'src/mess/drivers/tim100.c')
-rw-r--r-- | src/mess/drivers/tim100.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mess/drivers/tim100.c b/src/mess/drivers/tim100.c index c5b9a89fe08..92de929ffad 100644 --- a/src/mess/drivers/tim100.c +++ b/src/mess/drivers/tim100.c @@ -130,7 +130,7 @@ static MACHINE_CONFIG_START( tim100, tim100_state ) MCFG_SCREEN_SIZE(40*16, 16*16) MCFG_SCREEN_VISIBLE_AREA(0, 40*16-1, 0, 16*16-1) - MCFG_GFXDECODE( tim100 ) + MCFG_GFXDECODE_ADD("gfxdecode", tim100 ) MCFG_I8275_ADD ( "i8276", tim100_i8276_interface) |