summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/bsktball.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/bsktball.cpp')
-rw-r--r--src/mame/video/bsktball.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mame/video/bsktball.cpp b/src/mame/video/bsktball.cpp
index 39d2e98c33b..1cd97b297d6 100644
--- a/src/mame/video/bsktball.cpp
+++ b/src/mame/video/bsktball.cpp
@@ -29,7 +29,6 @@ TILE_GET_INFO_MEMBER(bsktball_state::get_bg_tile_info)
void bsktball_state::video_start()
{
m_bg_tilemap = &machine().tilemap().create(*m_gfxdecode, tilemap_get_info_delegate(*this, FUNC(bsktball_state::get_bg_tile_info)), TILEMAP_SCAN_ROWS, 8, 8, 32, 32);
- m_bg_tilemap->set_scrolldy(16, 16);
}
void bsktball_state::draw_sprites( bitmap_ind16 &bitmap, const rectangle &cliprect )
@@ -37,7 +36,7 @@ void bsktball_state::draw_sprites( bitmap_ind16 &bitmap, const rectangle &clipr
for (int mot = 0; mot < 16; mot++)
{
int pic = m_motion[mot * 4];
- int sy = 256 - m_motion[mot * 4 + 1] - 16;
+ int sy = 224 - m_motion[mot * 4 + 1];
int sx = m_motion[mot * 4 + 2];
int color = m_motion[mot * 4 + 3];
int flipx = (pic & 0x80) >> 7;