From 134158802555e5fe98592f7fb22eb65b4272a1cb Mon Sep 17 00:00:00 2001 From: Angelo Salese Date: Sat, 31 Jan 2015 00:57:05 +0100 Subject: Make refresh rate more sane, still not 100% correct tho. --- src/mess/drivers/c65.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mess/drivers/c65.c b/src/mess/drivers/c65.c index 157b5792632..d2c3ebe29eb 100644 --- a/src/mess/drivers/c65.c +++ b/src/mess/drivers/c65.c @@ -465,7 +465,7 @@ static MACHINE_CONFIG_START( c65, c65_state ) MCFG_SCREEN_UPDATE_DRIVER(c65_state, screen_update) // MCFG_SCREEN_SIZE(32*8, 32*8) // MCFG_SCREEN_VISIBLE_AREA(0*8, 32*8-1, 0*8, 32*8-1) - MCFG_SCREEN_RAW_PARAMS(MAIN_CLOCK, 910, 0, 640, 525, 0, 200) // mods needed + MCFG_SCREEN_RAW_PARAMS(MAIN_CLOCK*4, 910, 0, 640, 262, 0, 200) // mods needed MCFG_SCREEN_PALETTE("palette") MCFG_GFXDECODE_ADD("gfxdecode", "palette", c65) -- cgit v1.2.3