summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/gticlub.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/gticlub.c')
-rw-r--r--src/mame/video/gticlub.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/gticlub.c b/src/mame/video/gticlub.c
index 88c116ff73f..95919505e74 100644
--- a/src/mame/video/gticlub.c
+++ b/src/mame/video/gticlub.c
@@ -449,13 +449,13 @@ WRITE32_HANDLER( K001005_w )
if (space->device().safe_pc() == 0x201ee)
{
// This is used to make the SHARC timeout
- device_spin_until_trigger(&space->device(), 10000);
+ space->device().execute().spin_until_trigger(10000);
}
// !!! HACK to get past the FIFO B test (Winding Heat & Midnight Run) !!!
if (space->device().safe_pc() == 0x201e6)
{
// This is used to make the SHARC timeout
- device_spin_until_trigger(&space->device(), 10000);
+ space->device().execute().spin_until_trigger(10000);
}
break;