summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/tbowl.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/tbowl.c')
-rw-r--r--src/mame/drivers/tbowl.c11
1 files changed, 4 insertions, 7 deletions
diff --git a/src/mame/drivers/tbowl.c b/src/mame/drivers/tbowl.c
index f5bb4ea79aa..4d40cf8bab9 100644
--- a/src/mame/drivers/tbowl.c
+++ b/src/mame/drivers/tbowl.c
@@ -447,12 +447,11 @@ The game is displayed on 2 monitors
***/
-static MACHINE_RESET( tbowl )
+void tbowl_state::machine_reset()
{
- tbowl_state *state = machine.driver_data<tbowl_state>();
- state->m_adpcm_pos[0] = state->m_adpcm_pos[1] = 0;
- state->m_adpcm_end[0] = state->m_adpcm_end[1] = 0;
- state->m_adpcm_data[0] = state->m_adpcm_data[1] = -1;
+ m_adpcm_pos[0] = m_adpcm_pos[1] = 0;
+ m_adpcm_end[0] = m_adpcm_end[1] = 0;
+ m_adpcm_data[0] = m_adpcm_data[1] = -1;
}
static MACHINE_CONFIG_START( tbowl, tbowl_state )
@@ -492,9 +491,7 @@ static MACHINE_CONFIG_START( tbowl, tbowl_state )
MCFG_SCREEN_VISIBLE_AREA(0*8, 32*8-1, 2*8, 30*8-1)
MCFG_SCREEN_UPDATE_STATIC(tbowl_right)
- MCFG_VIDEO_START(tbowl)
- MCFG_MACHINE_RESET( tbowl )
/* sound hardware */
MCFG_SPEAKER_STANDARD_MONO("mono")