diff options
Diffstat (limited to 'src/mame/drivers/panicr.cpp')
-rw-r--r-- | src/mame/drivers/panicr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/panicr.cpp b/src/mame/drivers/panicr.cpp index 0e3dd953228..a7035b9458f 100644 --- a/src/mame/drivers/panicr.cpp +++ b/src/mame/drivers/panicr.cpp @@ -353,7 +353,7 @@ READ8_MEMBER(panicr_state::collision_r) // there is a 3rd additional bit that is used as priority, we're not concerned about that here m_infotilemap_2->set_scrollx(0, m_scrollx & 0xffff); - m_infotilemap_2->draw(m_screen, *m_tempbitmap_1, m_tempbitmap_clip, 0,0); + m_infotilemap_2->draw(*m_screen, *m_tempbitmap_1, m_tempbitmap_clip, 0,0); int actual_column = offset&0x3f; |