diff options
author | 2012-09-13 11:15:32 +0000 | |
---|---|---|
committer | 2012-09-13 11:15:32 +0000 | |
commit | 219e664785890f52079bae7e74543920d638796a (patch) | |
tree | 774d1ab1e7d87ae4d2c1ef335dcef24a28a7d7e8 /src/mess/video/p2000m.c | |
parent | af9a5e817d3eefdda79e801056b29167ecbcdef9 (diff) |
Massive change, MACHINE_START\RESET, VIDEO_START\RESET and PALETTE_INIT changed to be members of state classes (no whatsnew)
Diffstat (limited to 'src/mess/video/p2000m.c')
-rw-r--r-- | src/mess/video/p2000m.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/mess/video/p2000m.c b/src/mess/video/p2000m.c index 72cc493471c..0f8875e6e65 100644 --- a/src/mess/video/p2000m.c +++ b/src/mess/video/p2000m.c @@ -11,10 +11,9 @@ -VIDEO_START( p2000m ) +VIDEO_START_MEMBER(p2000t_state,p2000m) { - p2000t_state *state = machine.driver_data<p2000t_state>(); - state->m_frame_count = 0; + m_frame_count = 0; } |