summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/video/zx8301.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/video/zx8301.c')
-rw-r--r--src/mess/video/zx8301.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mess/video/zx8301.c b/src/mess/video/zx8301.c
index 0223080b802..c828c0cd12c 100644
--- a/src/mess/video/zx8301.c
+++ b/src/mess/video/zx8301.c
@@ -226,7 +226,7 @@ READ8_MEMBER( zx8301_device::data_r )
if (m_vda)
{
- device_spin_until_time(m_cpu, m_screen->time_until_pos(256, 0));
+ m_cpu->spin_until_time(m_screen->time_until_pos(256, 0));
}
return readbyte(offset);
@@ -243,7 +243,7 @@ WRITE8_MEMBER( zx8301_device::data_w )
if (m_vda)
{
- device_spin_until_time(m_cpu, m_screen->time_until_pos(256, 0));
+ m_cpu->spin_until_time(m_screen->time_until_pos(256, 0));
}
writebyte(offset, data);