summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/esh.c
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2012-01-13 22:06:59 +0000
committer Aaron Giles <aaron@aarongiles.com>2012-01-13 22:06:59 +0000
commit570b33a85391ff8c6c1c71350a86cecfe5ae025d (patch)
tree5e276060ed9cceed6e103d91c36c096e43f5aadd /src/mame/drivers/esh.c
parent7984d1991e1f339c9cbb7ed2c8f0abe5ad16223d (diff)
Some cleanup of the previous change. Added new template
device_delegate which wraps a regular delegate and includes a string pointer to a device tag, which can be simply resolved later. Converted the screen_update delegates to to be based on this. Changed the mechanism by which screen formats are auto-deduced. Converted SCREEN_EOF to use these delegates as well, so now there is MCFG_SCREEN_EOF_STATIC/ DRIVER/DEVICE just like MCFG_SCREEN_UPDATE.
Diffstat (limited to 'src/mame/drivers/esh.c')
-rw-r--r--src/mame/drivers/esh.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/esh.c b/src/mame/drivers/esh.c
index 7ebf66173e5..4e43a6fb2a4 100644
--- a/src/mame/drivers/esh.c
+++ b/src/mame/drivers/esh.c
@@ -301,7 +301,7 @@ static MACHINE_CONFIG_START( esh, esh_state )
MCFG_MACHINE_START(esh)
MCFG_LASERDISC_LDV1000_ADD("laserdisc")
- MCFG_LASERDISC_OVERLAY(256, 256, esh)
+ MCFG_LASERDISC_OVERLAY_STATIC(256, 256, esh)
/* video hardware */
MCFG_LASERDISC_SCREEN_ADD_NTSC("screen", "laserdisc")