summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/progolf.c
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2012-04-09 17:30:29 +0000
committer Aaron Giles <aaron@aarongiles.com>2012-04-09 17:30:29 +0000
commit7f5529c2cd1ac819851ea3cc76f2a87ec759ba1b (patch)
treedab7eb8d238b272f30d15eaca54c58980f1b3cdd /src/mame/drivers/progolf.c
parent94d0358dd317fc94dc12aa09a72ef001215ec5af (diff)
Templatized the palette generators and made naming consistent.
Moved video/generic flip screen management into the base driver_device class and updated all callers.
Diffstat (limited to 'src/mame/drivers/progolf.c')
-rw-r--r--src/mame/drivers/progolf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/progolf.c b/src/mame/drivers/progolf.c
index c01055292a0..051efd2451b 100644
--- a/src/mame/drivers/progolf.c
+++ b/src/mame/drivers/progolf.c
@@ -190,7 +190,7 @@ WRITE8_MEMBER(progolf_state::progolf_scrollx_hi_w)
WRITE8_MEMBER(progolf_state::progolf_flip_screen_w)
{
- flip_screen_set(machine(), data & 1);
+ flip_screen_set(data & 1);
if(data & 0xfe)
printf("$9600 with data = %02x used\n",data);
}