From 70f0957d10cd0050011c3608a87c98e1c3de80d9 Mon Sep 17 00:00:00 2001 From: AJR Date: Wed, 22 Aug 2018 16:05:36 -0400 Subject: [PATCH] tms9928a.cpp: Fix number of vertical lines for NTSC devices (nw) --- src/devices/video/tms9928a.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/devices/video/tms9928a.cpp b/src/devices/video/tms9928a.cpp index 74c58e0c3fc..bf43f141d28 100644 --- a/src/devices/video/tms9928a.cpp +++ b/src/devices/video/tms9928a.cpp @@ -85,7 +85,7 @@ void tms9928a_device::device_config_complete() TOTAL_VERT_PAL, VERT_DISPLAY_START_PAL - 12, VERT_DISPLAY_START_PAL + 192 + 12); else screen().set_raw(clock() / 2, TOTAL_HORZ, HORZ_DISPLAY_START - 12, HORZ_DISPLAY_START + 256 + 12, - TOTAL_VERT_PAL, VERT_DISPLAY_START_NTSC - 12, VERT_DISPLAY_START_NTSC + 192 + 12); + TOTAL_VERT_NTSC, VERT_DISPLAY_START_NTSC - 12, VERT_DISPLAY_START_NTSC + 192 + 12); } }