summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame
diff options
context:
space:
mode:
author hap <happppp@users.noreply.github.com>2020-07-09 22:29:32 +0200
committer hap <happppp@users.noreply.github.com>2020-07-09 22:29:32 +0200
commita47ed1a958182e7eff3dfb260193976dcaf6d840 (patch)
treed47d8e54c00e6f9aafe96f8c3b6c84723476d32e /src/mame
parent0ebb7244711aef3d835c2dc0cc1df665365e46c3 (diff)
simpsons: get rid of black borders/improve screen aspect ratio
Diffstat (limited to 'src/mame')
-rw-r--r--src/mame/drivers/simpsons.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/simpsons.cpp b/src/mame/drivers/simpsons.cpp
index 8897f6624cf..86fb6c95c78 100644
--- a/src/mame/drivers/simpsons.cpp
+++ b/src/mame/drivers/simpsons.cpp
@@ -345,7 +345,7 @@ void simpsons_state::simpsons(machine_config &config)
// 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, 264, 0, 224);
+ screen.set_raw(XTAL(24'000'000)/4, 384, 0+16, 320-16, 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");