summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/video
diff options
context:
space:
mode:
author Curt Coder <curtcoder@mail.com>2015-05-26 22:59:02 +0300
committer Curt Coder <curtcoder@mail.com>2015-05-26 22:59:09 +0300
commit89c46e3d8ffdbc6ca6a2b52fa77b12bb9e089047 (patch)
tree20d0357090d70194f81b87390c377e8c27fcc6e4 /src/mess/video
parent84c2694454564d5eb7456e9db0803dfeb227f2ca (diff)
(MESS) abc80: Fixed VSYNC and de-interleaved the ABCDemo diskette. ABCDemo now runs from both cassette and diskette. [Curt Coder]
Diffstat (limited to 'src/mess/video')
-rw-r--r--src/mess/video/abc80.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mess/video/abc80.c b/src/mess/video/abc80.c
index 681bfc88b81..66212688466 100644
--- a/src/mess/video/abc80.c
+++ b/src/mess/video/abc80.c
@@ -175,7 +175,7 @@ void abc80_state::video_start()
m_vsync_on_timer->adjust(screen->time_until_pos(0, 0), 0, screen->frame_period());
m_vsync_off_timer = timer_alloc(TIMER_ID_VSYNC_OFF);
- m_vsync_on_timer->adjust(screen->time_until_pos(16, 0), 0, screen->frame_period());
+ m_vsync_off_timer->adjust(screen->time_until_pos(16, 0), 0, screen->frame_period());
// allocate memory
m_video_ram.allocate(0x400);