diff options
| author | 2017-02-21 11:35:32 +0200 | |
|---|---|---|
| committer | 2017-02-21 11:35:32 +0200 | |
| commit | 9fa456eaffc429bf2337ab922103155caa41e915 (patch) | |
| tree | 50662923c51140cc737257347782330d08998de0 /src | |
| parent | 93f8b62a16bef6f11c656ad006caf83d20f32f96 (diff) | |
abc80: Fixed flicker in hiresinv demo. [Curt Coder]
Diffstat (limited to 'src')
| -rw-r--r-- | src/mame/includes/abc80.h | 2 | ||||
| -rw-r--r-- | src/mame/video/abc80.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/includes/abc80.h b/src/mame/includes/abc80.h index f8ee642eda9..b1770098761 100644 --- a/src/mame/includes/abc80.h +++ b/src/mame/includes/abc80.h @@ -25,7 +25,7 @@ #include "sound/wave.h" #define ABC80_HTOTAL 384 -#define ABC80_HBEND 35 +#define ABC80_HBEND 30 #define ABC80_HBSTART 384 #define ABC80_VTOTAL 313 #define ABC80_VBEND 15 diff --git a/src/mame/video/abc80.cpp b/src/mame/video/abc80.cpp index c8d8327c2a8..9209ecc0e7d 100644 --- a/src/mame/video/abc80.cpp +++ b/src/mame/video/abc80.cpp @@ -160,7 +160,7 @@ void abc80_state::video_start() // start timers m_scanline_timer = timer_alloc(TIMER_ID_SCANLINE); - m_scanline_timer->adjust(m_screen->time_until_pos(0, 0), 0, m_screen->scan_period()); + m_scanline_timer->adjust(m_screen->time_until_pos(0, ABC80_HBEND), 0, m_screen->scan_period()); m_blink_timer = timer_alloc(TIMER_ID_BLINK); m_blink_timer->adjust(attotime::from_hz(XTAL_11_9808MHz/2/6/64/312/16), 0, attotime::from_hz(XTAL_11_9808MHz/2/6/64/312/16)); |
