summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/taitowlf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/taitowlf.c')
-rw-r--r--src/mame/drivers/taitowlf.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/taitowlf.c b/src/mame/drivers/taitowlf.c
index 590d7b447c9..20744071faf 100644
--- a/src/mame/drivers/taitowlf.c
+++ b/src/mame/drivers/taitowlf.c
@@ -89,9 +89,9 @@ public:
UINT32 taitowlf_state::screen_update_taitowlf(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect)
{
int x,y,count;
- const UINT8 *blit_ram = screen.machine().root_device().memregion("user5")->base();
+ const UINT8 *blit_ram = machine().root_device().memregion("user5")->base();
- bitmap.fill(get_black_pen(screen.machine()), cliprect);
+ bitmap.fill(get_black_pen(machine()), cliprect);
count = (0);
@@ -104,7 +104,7 @@ UINT32 taitowlf_state::screen_update_taitowlf(screen_device &screen, bitmap_rgb3
color = (blit_ram[count] & 0xff);
if(cliprect.contains(x+0, y))
- bitmap.pix32(y, x+0) = screen.machine().pens[color];
+ bitmap.pix32(y, x+0) = machine().pens[color];
count++;
}