Merge pull request #6667 from cam900/patch-142

gp9001.cpp : Fix MT 07642
This commit is contained in:
ajrhacker 2020-05-08 06:31:18 -04:00 committed by GitHub
commit df9f867b6b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -719,7 +719,7 @@ void gp9001vdp_device::draw_sprites( bitmap_ind16 &bitmap, const rectangle &clip
else sy = sy_base + dim_y;
for (int dim_x = 0; dim_x < sprite_sizex; dim_x += 8)
{
clk += 64; // 64? cycle per each tile
clk += 32; // 32? cycle per each tile; TODO: verify from real hardware
if (clk > clk_max)
return;