diff options
Diffstat (limited to 'src/devices/video/mc6845.cpp')
-rw-r--r-- | src/devices/video/mc6845.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/devices/video/mc6845.cpp b/src/devices/video/mc6845.cpp index cb5a510857d..553839da2b1 100644 --- a/src/devices/video/mc6845.cpp +++ b/src/devices/video/mc6845.cpp @@ -913,11 +913,7 @@ TIMER_CALLBACK_MEMBER(mc6845_device::handle_line_timer) update_cursor_state(); if (has_screen()) - { - // HACK: prevent asoccer from hanging MAME by repeatedly stalling VBLANK periods and attendant frame updates - if (!m_vsync || !new_vsync) - screen().reset_origin(); - } + screen().reset_origin(); } else { |