summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/ajax.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/ajax.c')
-rw-r--r--src/mame/video/ajax.c13
1 files changed, 6 insertions, 7 deletions
diff --git a/src/mame/video/ajax.c b/src/mame/video/ajax.c
index a10680ed56e..f2d74fa537d 100644
--- a/src/mame/video/ajax.c
+++ b/src/mame/video/ajax.c
@@ -68,15 +68,14 @@ void ajax_zoom_callback( running_machine &machine, int *code, int *color, int *f
***************************************************************************/
-VIDEO_START( ajax )
+void ajax_state::video_start()
{
- ajax_state *state = machine.driver_data<ajax_state>();
- state->m_layer_colorbase[0] = 64;
- state->m_layer_colorbase[1] = 0;
- state->m_layer_colorbase[2] = 32;
- state->m_sprite_colorbase = 16;
- state->m_zoom_colorbase = 6; /* == 48 since it's 7-bit graphics */
+ m_layer_colorbase[0] = 64;
+ m_layer_colorbase[1] = 0;
+ m_layer_colorbase[2] = 32;
+ m_sprite_colorbase = 16;
+ m_zoom_colorbase = 6; /* == 48 since it's 7-bit graphics */
}