Previous 199869 Revisions Next

r21031 Wednesday 13th February, 2013 at 14:20:01 UTC by Miodrag Milanović
Fixed debug build (nw)
[src/mame/drivers]igs017.c mediagx.c
[src/mame/video]taito_h.c

trunk/src/mame/drivers/mediagx.c
r21030r21031
13051305   }
13061306
13071307#ifdef MAME_DEBUG
1308   machine().add_notifier(MACHINE_NOTIFY_EXIT, machine_notify_delegate(FUNC(report_speedups), &machine));
1308   machine().add_notifier(MACHINE_NOTIFY_EXIT, machine_notify_delegate(FUNC(mediagx_state::report_speedups), this));
13091309#endif
13101310}
13111311
trunk/src/mame/drivers/igs017.c
r21030r21031
414414
415415      bitmap.fill(0, cliprect);
416416
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);
418418
419419      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]);
420420      m_debug_addr = a;
trunk/src/mame/video/taito_h.c
r21030r21031
449449   if (!machine().input().code_pressed(KEYCODE_A))
450450      tc0080vco_tilemap_draw(m_tc0080vco, bitmap, cliprect, 0, TILEMAP_DRAW_OPAQUE, 0);
451451   if (!machine().input().code_pressed(KEYCODE_S))
452      dleague_draw_sprites(machine(), bitmap, cliprect, 0);
452      dleague_draw_sprites(bitmap, cliprect, 0);
453453   if (!machine().input().code_pressed(KEYCODE_D))
454454      tc0080vco_tilemap_draw(m_tc0080vco, bitmap, cliprect, 1, 0, 0);
455455   if (!machine().input().code_pressed(KEYCODE_F))
456      dleague_draw_sprites(machine(), bitmap, cliprect, 1);
456      dleague_draw_sprites(bitmap, cliprect, 1);
457457#else
458458   tc0080vco_tilemap_draw(m_tc0080vco, bitmap, cliprect, 0, TILEMAP_DRAW_OPAQUE, 0);
459459   dleague_draw_sprites (bitmap, cliprect, 0);

Previous 199869 Revisions Next


© 1997-2024 The MAME Team