tms9928a.cpp: Fix number of vertical lines for NTSC devices (nw)

This commit is contained in:
AJR 2018-08-22 16:05:36 -04:00
parent 2ed5eafa69
commit 70f0957d10

View File

@ -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);
}
}