diff options
author | 2016-08-27 05:47:36 +1000 | |
---|---|---|
committer | 2016-08-27 05:47:36 +1000 | |
commit | ea3ff966732b30c0350022e64005a4c3cfa232ed (patch) | |
tree | f7dcccdcf089555caa4f38d5ac174a075bc95d5d /src/mame/drivers/panicr.cpp | |
parent | db48502ecbf882a0d4558d440a16803b1365f17d (diff) |
More prep for removing pointer/reference duality (nw)
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; |