summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/dgpix.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/dgpix.c')
-rw-r--r--src/mame/drivers/dgpix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/dgpix.c b/src/mame/drivers/dgpix.c
index 95a8bf9a7fd..2ec1b3d341e 100644
--- a/src/mame/drivers/dgpix.c
+++ b/src/mame/drivers/dgpix.c
@@ -197,7 +197,7 @@ WRITE32_MEMBER(dgpix_state::coin_w)
READ32_MEMBER(dgpix_state::vblank_r)
{
/* burn a bunch of cycles because this is polled frequently during busy loops */
- device_eat_cycles(&space.device(), 100);
+ space.device().execute().eat_cycles(100);
return ioport("VBLANK")->read();
}