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/plan80.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/plan80.c')
-rw-r--r-- | src/mess/drivers/plan80.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mess/drivers/plan80.c b/src/mess/drivers/plan80.c index 9411b52c1e2..445baab9b15 100644 --- a/src/mess/drivers/plan80.c +++ b/src/mess/drivers/plan80.c @@ -241,7 +241,7 @@ static MACHINE_CONFIG_START( plan80, plan80_state ) MCFG_SCREEN_UPDATE_DRIVER(plan80_state, screen_update) MCFG_SCREEN_SIZE(48*6, 32*8) MCFG_SCREEN_VISIBLE_AREA(0, 48*6-1, 0, 32*8-1) - MCFG_GFXDECODE(plan80) + MCFG_GFXDECODE_ADD("gfxdecode", plan80) MCFG_PALETTE_LENGTH(2) MCFG_PALETTE_INIT_OVERRIDE(driver_device, monochrome_green) MACHINE_CONFIG_END |