summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/video/odyssey2.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/video/odyssey2.c')
-rw-r--r--src/mess/video/odyssey2.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/mess/video/odyssey2.c b/src/mess/video/odyssey2.c
index 41bdb5ec91d..2c54b026c26 100644
--- a/src/mess/video/odyssey2.c
+++ b/src/mess/video/odyssey2.c
@@ -603,10 +603,9 @@ void odyssey2_state::video_start()
***************************************************************************/
-SCREEN_UPDATE_IND16( odyssey2 )
+UINT32 odyssey2_state::screen_update_odyssey2(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
{
- odyssey2_state *state = screen.machine().driver_data<odyssey2_state>();
- copybitmap( bitmap, state->m_tmp_bitmap, 0, 0, 0, 0, cliprect );
+ copybitmap( bitmap, m_tmp_bitmap, 0, 0, 0, 0, cliprect );
return 0;
}