summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Angelo Salese <angelosa@users.noreply.github.com>2020-03-20 23:06:24 +0100
committer GitHub <noreply@github.com>2020-03-20 23:06:24 +0100
commitc79260fbde8714a1c2292b5f5b2e297a93d4d14a (patch)
tree596d1d9231918cec8f4a0ad590fcb6195a4d3613
parent13e7370a0f46c7d5c52860d0644e3fb8474cc3ae (diff)
Correct h/vtotals after feedback (nw)
-rw-r--r--src/mame/drivers/taito_z.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/taito_z.cpp b/src/mame/drivers/taito_z.cpp
index c75efe81ff2..a212deb7502 100644
--- a/src/mame/drivers/taito_z.cpp
+++ b/src/mame/drivers/taito_z.cpp
@@ -3166,7 +3166,7 @@ void taitoz_state::screen_config(machine_config &config, int vdisp_start, int vd
// contcirc and enforce uses a narrower visible area (checked via service mode),
// confirm if they outputs the same syncs.
SCREEN(config, m_screen, SCREEN_TYPE_RASTER);
- m_screen->set_raw(XTAL(26'686'000)/4, 426, 0, 320, 261, vdisp_start, vdisp_end);
+ m_screen->set_raw(XTAL(26'686'000)/4, 424, 0, 320, 262, vdisp_start, vdisp_end);
}
void taitoz_state::contcirc(machine_config &config)