summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/williams.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/williams.c')
-rw-r--r--src/mame/video/williams.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/video/williams.c b/src/mame/video/williams.c
index 94bdc9960eb..767da2199e7 100644
--- a/src/mame/video/williams.c
+++ b/src/mame/video/williams.c
@@ -539,7 +539,7 @@ WRITE8_MEMBER(williams_state::williams_blitter_w)
/* based on the number of memory accesses needed to do the blit, compute how long the blit will take */
/* this is just a guess */
estimated_clocks_at_4MHz = 20 + ((data & 4) ? 4 : 2) * accesses;
- device_adjust_icount(&space.device(), -((estimated_clocks_at_4MHz + 3) / 4));
+ space.device().execute().adjust_icount(-((estimated_clocks_at_4MHz + 3) / 4));
/* Log blits */
logerror("%04X:Blit @ %3d : %02X%02X -> %02X%02X, %3dx%3d, mask=%02X, flags=%02X, icount=%d, win=%d\n",