summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author hap <happppp@users.noreply.github.com>2025-06-25 20:16:41 +0200
committer hap <happppp@users.noreply.github.com>2025-06-25 20:16:41 +0200
commit3b6ef1d456b7d137505bf7f98f88ef3588b798de (patch)
tree39aca5eb6e80be192cfeafe29568c99d042a1e69
parentee563dbc56445a38594b813398873c908bcb1154 (diff)
aliens: revert change i didn't intend to commit (although it is likely correct)
-rw-r--r--src/mame/konami/aliens.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/konami/aliens.cpp b/src/mame/konami/aliens.cpp
index 9504cc11e12..61da6481dd8 100644
--- a/src/mame/konami/aliens.cpp
+++ b/src/mame/konami/aliens.cpp
@@ -307,7 +307,7 @@ void aliens_state::aliens(machine_config &config)
// video hardware
screen_device &screen(SCREEN(config, "screen", SCREEN_TYPE_RASTER));
- screen.set_raw(XTAL(24'000'000) / 3, 512, 112, 400, 264, 16, 240); // measured 59.17
+ screen.set_raw(XTAL(24'000'000) / 3, 528, 112, 400, 256, 16, 240); // measured 59.17
// 6MHz dotclock is more realistic, however needs drawing updates. replace when ready
// screen.set_raw(XTAL(24'000'000) / 4, 396, hbend, hbstart, 256, 16, 240);
screen.set_screen_update(FUNC(aliens_state::screen_update));