summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author hap <happppp@users.noreply.github.com>2020-07-09 22:26:27 +0200
committer hap <happppp@users.noreply.github.com>2020-07-09 22:26:44 +0200
commit0ebb7244711aef3d835c2dc0cc1df665365e46c3 (patch)
tree68f72853921e5f5472ae65f71024a96ca3279270
parent08c3310b4e6231186a5936396265c81753a11cd5 (diff)
simpsons: correct refresh rate
-rw-r--r--src/mame/drivers/simpsons.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/mame/drivers/simpsons.cpp b/src/mame/drivers/simpsons.cpp
index c95545fb141..8897f6624cf 100644
--- a/src/mame/drivers/simpsons.cpp
+++ b/src/mame/drivers/simpsons.cpp
@@ -341,12 +341,11 @@ void simpsons_state::simpsons(machine_config &config)
/* video hardware */
screen_device &screen(SCREEN(config, "screen", SCREEN_TYPE_RASTER));
- // Screen timings generated by the 051962, probably not programmable (except maybe between 6 amd 8MHz)
+ // Screen timings generated by the 051962, probably not programmable (except maybe between 6 and 8MHz)
// 6MHz dot clock
// horizontal: 16 cycles front porch, 32 cycles sync, 16 cycles back porch
// vertical: 16 lines front porch, 8 lines sync, 16 lines back porch
-
- screen.set_raw(XTAL(24'000'000)/4, 384, 0, 320, 256, 0, 224);
+ screen.set_raw(XTAL(24'000'000)/4, 384, 0, 320, 264, 0, 224);
screen.set_video_attributes(VIDEO_UPDATE_AFTER_VBLANK);
screen.set_screen_update(FUNC(simpsons_state::screen_update_simpsons));
screen.set_palette("palette");