summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/fromance.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/fromance.cpp')
-rw-r--r--src/mame/video/fromance.cpp30
1 files changed, 0 insertions, 30 deletions
diff --git a/src/mame/video/fromance.cpp b/src/mame/video/fromance.cpp
index 605469344a4..902f2c4cf1a 100644
--- a/src/mame/video/fromance.cpp
+++ b/src/mame/video/fromance.cpp
@@ -103,19 +103,6 @@ VIDEO_START_MEMBER(fromance_state,nekkyoku)
init_common();
}
-VIDEO_START_MEMBER(fromance_state,pipedrm)
-{
- VIDEO_START_CALL_MEMBER(fromance);
- m_scrolly_ofs = 0x00;
-}
-
-VIDEO_START_MEMBER(fromance_state,hatris)
-{
- VIDEO_START_CALL_MEMBER(fromance);
- m_scrollx_ofs = 0xB9;
- m_scrolly_ofs = 0x00;
-}
-
/*************************************
*
* Graphics control register
@@ -314,20 +301,3 @@ uint32_t fromance_state::screen_update_fromance(screen_device &screen, bitmap_in
m_fg_tilemap->draw(screen, bitmap, cliprect, 0, 0);
return 0;
}
-
-
-uint32_t fromance_state::screen_update_pipedrm(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
-{
- uint8_t* sram = m_spriteram;
-
- /* there seems to be no logical mapping for the X scroll register -- maybe it's gone */
- m_bg_tilemap->set_scrolly(0, m_scrolly[1]);
- m_fg_tilemap->set_scrolly(0, m_scrolly[0]);
-
- m_bg_tilemap->draw(screen, bitmap, cliprect, 0, 0);
- m_fg_tilemap->draw(screen, bitmap, cliprect, 0, 0);
-
- m_spr_old->turbofrc_draw_sprites((uint16_t*)sram, m_spriteram_size, 0, bitmap, cliprect, screen.priority(), 0);
- m_spr_old->turbofrc_draw_sprites((uint16_t*)sram, m_spriteram_size, 0, bitmap, cliprect, screen.priority(), 1);
- return 0;
-}