summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/video/apple2.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/video/apple2.c')
-rw-r--r--src/mess/video/apple2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mess/video/apple2.c b/src/mess/video/apple2.c
index 0f5e170b6af..f40edc079df 100644
--- a/src/mess/video/apple2.c
+++ b/src/mess/video/apple2.c
@@ -478,7 +478,7 @@ UINT32 apple2_state::screen_update_apple2(screen_device &screen, bitmap_ind16 &b
UINT32 new_a2;
/* calculate the m_flash value */
- m_flash = ((screen.machine().time() * 4).seconds & 1) ? 1 : 0;
+ m_flash = ((machine().time() * 4).seconds & 1) ? 1 : 0;
/* read out relevant softswitch variables; to see what has changed */
new_a2 = effective_a2(this);