diff options
Diffstat (limited to 'src/mess/drivers/apple2.c')
-rw-r--r-- | src/mess/drivers/apple2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mess/drivers/apple2.c b/src/mess/drivers/apple2.c index 602a5f3f3f0..bbe05013928 100644 --- a/src/mess/drivers/apple2.c +++ b/src/mess/drivers/apple2.c @@ -368,7 +368,7 @@ PALETTE_INIT_MEMBER(napple2_state, apple2) UINT32 napple2_state::screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect) { // always update the flash timer here so it's smooth regardless of mode switches - m_video->m_flash = ((machine().time() * 4).seconds & 1) ? true : false; + m_video->m_flash = ((machine().time() * 4).seconds() & 1) ? true : false; if (m_video->m_graphics) { |