summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/spy.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/spy.c')
-rw-r--r--src/mame/video/spy.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/mame/video/spy.c b/src/mame/video/spy.c
index a73934694a9..2fa4792046d 100644
--- a/src/mame/video/spy.c
+++ b/src/mame/video/spy.c
@@ -44,14 +44,13 @@ void spy_sprite_callback( running_machine &machine, int *code, int *color, int *
***************************************************************************/
-VIDEO_START( spy )
+void spy_state::video_start()
{
- spy_state *state = machine.driver_data<spy_state>();
- state->m_layer_colorbase[0] = 48;
- state->m_layer_colorbase[1] = 0;
- state->m_layer_colorbase[2] = 16;
- state->m_sprite_colorbase = 32;
+ m_layer_colorbase[0] = 48;
+ m_layer_colorbase[1] = 0;
+ m_layer_colorbase[2] = 16;
+ m_sprite_colorbase = 32;
}