summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/pcktgal.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/pcktgal.c')
-rw-r--r--src/mame/video/pcktgal.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/video/pcktgal.c b/src/mame/video/pcktgal.c
index 29b598939b1..935a018fa76 100644
--- a/src/mame/video/pcktgal.c
+++ b/src/mame/video/pcktgal.c
@@ -67,15 +67,15 @@ static void draw_sprites(running_machine &machine, bitmap_ind16 &bitmap, const r
UINT32 pcktgal_state::screen_update_pcktgal(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
{
-// flip_screen_set(screen.machine().device<deco_bac06_device>("tilegen1")->get_flip_state());
- screen.machine().device<deco_bac06_device>("tilegen1")->deco_bac06_pf_draw(screen.machine(),bitmap,cliprect,TILEMAP_DRAW_OPAQUE, 0x00, 0x00, 0x00, 0x00);
- draw_sprites(screen.machine(), bitmap, cliprect);
+// flip_screen_set(machine().device<deco_bac06_device>("tilegen1")->get_flip_state());
+ machine().device<deco_bac06_device>("tilegen1")->deco_bac06_pf_draw(machine(),bitmap,cliprect,TILEMAP_DRAW_OPAQUE, 0x00, 0x00, 0x00, 0x00);
+ draw_sprites(machine(), bitmap, cliprect);
return 0;
}
UINT32 pcktgal_state::screen_update_pcktgalb(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
{
// the bootleg doesn't properly set the tilemap registers, because it's on non-original hardware, which probably doesn't have the flexible tilemaps.
- screen.machine().device<deco_bac06_device>("tilegen1")->deco_bac06_pf_draw_bootleg(screen.machine(),bitmap,cliprect,TILEMAP_DRAW_OPAQUE, 0, 2);
- draw_sprites(screen.machine(), bitmap, cliprect);
+ machine().device<deco_bac06_device>("tilegen1")->deco_bac06_pf_draw_bootleg(machine(),bitmap,cliprect,TILEMAP_DRAW_OPAQUE, 0, 2);
+ draw_sprites(machine(), bitmap, cliprect);
return 0;}