summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/firefox.c
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2014-02-13 10:29:11 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2014-02-13 10:29:11 +0000
commitbc0672544f0b6c470448f260b930b5aff5f5f940 (patch)
treef706c14b8d87d2d6da2601573343cf714e747762 /src/mame/drivers/firefox.c
parentf897a1a67dd3644dcf54600d08792309e8321637 (diff)
Moved drawgfx functions to gfx_element (nw)
Diffstat (limited to 'src/mame/drivers/firefox.c')
-rw-r--r--src/mame/drivers/firefox.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/firefox.c b/src/mame/drivers/firefox.c
index 18b92561c77..ab6e0ca07ec 100644
--- a/src/mame/drivers/firefox.c
+++ b/src/mame/drivers/firefox.c
@@ -247,7 +247,7 @@ UINT32 firefox_state::screen_update_firefox(screen_device &screen, bitmap_rgb32
int flipx = flags & 0x20;
int code = sprite_data[ 15 - row ] + ( 256 * ( ( flags >> 6 ) & 3 ) );
- drawgfx_transpen( bitmap, cliprect, machine().gfx[ 1 ], code, color, flipx, flipy, x + 8, gfxtop + 500 - y - ( row * 16 ), 0 );
+ machine().gfx[ 1 ]->transpen(bitmap,cliprect, code, color, flipx, flipy, x + 8, gfxtop + 500 - y - ( row * 16 ), 0 );
}
}
}