trunk/src/mame/drivers/igs017.c
| r21030 | r21031 | |
| 414 | 414 | |
| 415 | 415 | bitmap.fill(0, cliprect); |
| 416 | 416 | |
| 417 | | draw_sprite(machine, bitmap, cliprect, 0,0, w,h, 0,0, 0, a); |
| 417 | draw_sprite(bitmap, cliprect, 0,0, w,h, 0,0, 0, a); |
| 418 | 418 | |
| 419 | 419 | popmessage("a: %08X w: %03X p: %02x-%02x-%02x",a,w,m_sprites_gfx[a/3*3+0],m_sprites_gfx[a/3*3+1],m_sprites_gfx[a/3*3+2]); |
| 420 | 420 | m_debug_addr = a; |
trunk/src/mame/video/taito_h.c
| r21030 | r21031 | |
| 449 | 449 | if (!machine().input().code_pressed(KEYCODE_A)) |
| 450 | 450 | tc0080vco_tilemap_draw(m_tc0080vco, bitmap, cliprect, 0, TILEMAP_DRAW_OPAQUE, 0); |
| 451 | 451 | if (!machine().input().code_pressed(KEYCODE_S)) |
| 452 | | dleague_draw_sprites(machine(), bitmap, cliprect, 0); |
| 452 | dleague_draw_sprites(bitmap, cliprect, 0); |
| 453 | 453 | if (!machine().input().code_pressed(KEYCODE_D)) |
| 454 | 454 | tc0080vco_tilemap_draw(m_tc0080vco, bitmap, cliprect, 1, 0, 0); |
| 455 | 455 | if (!machine().input().code_pressed(KEYCODE_F)) |
| 456 | | dleague_draw_sprites(machine(), bitmap, cliprect, 1); |
| 456 | dleague_draw_sprites(bitmap, cliprect, 1); |
| 457 | 457 | #else |
| 458 | 458 | tc0080vco_tilemap_draw(m_tc0080vco, bitmap, cliprect, 0, TILEMAP_DRAW_OPAQUE, 0); |
| 459 | 459 | dleague_draw_sprites (bitmap, cliprect, 0); |