summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/ddragon.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/ddragon.c')
-rw-r--r--src/mame/video/ddragon.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/mame/video/ddragon.c b/src/mame/video/ddragon.c
index 214b675408c..2cd99e9a1c5 100644
--- a/src/mame/video/ddragon.c
+++ b/src/mame/video/ddragon.c
@@ -95,7 +95,6 @@ TILE_GET_INFO_MEMBER(ddragon_state::get_fg_16color_tile_info)
VIDEO_START_MEMBER(ddragon_state,ddragon)
{
-
m_bg_tilemap = &machine().tilemap().create(tilemap_get_info_delegate(FUNC(ddragon_state::get_bg_tile_info),this), tilemap_mapper_delegate(FUNC(ddragon_state::background_scan),this), 16, 16, 32, 32);
m_fg_tilemap = &machine().tilemap().create(tilemap_get_info_delegate(FUNC(ddragon_state::get_fg_tile_info),this), TILEMAP_SCAN_ROWS, 8, 8, 32, 32);
@@ -108,7 +107,6 @@ VIDEO_START_MEMBER(ddragon_state,ddragon)
VIDEO_START_MEMBER(ddragon_state,chinagat)
{
-
m_bg_tilemap = &machine().tilemap().create(tilemap_get_info_delegate(FUNC(ddragon_state::get_bg_tile_info),this),tilemap_mapper_delegate(FUNC(ddragon_state::background_scan),this), 16, 16, 32, 32);
m_fg_tilemap = &machine().tilemap().create(tilemap_get_info_delegate(FUNC(ddragon_state::get_fg_16color_tile_info),this),TILEMAP_SCAN_ROWS, 8, 8, 32, 32);
@@ -235,7 +233,6 @@ static void draw_sprites( running_machine& machine, bitmap_ind16 &bitmap,const r
UINT32 ddragon_state::screen_update_ddragon(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
{
-
int scrollx = (m_scrollx_hi << 8) | *m_scrollx_lo;
int scrolly = (m_scrolly_hi << 8) | *m_scrolly_lo;