From 11125e89fdd5cd0fa90a9d65be6fa8eb15a59836 Mon Sep 17 00:00:00 2001 From: TwistedTom Date: Mon, 25 May 2020 22:57:57 +0100 Subject: [PATCH] fix scroll offsets --- src/mame/video/cps1.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mame/video/cps1.cpp b/src/mame/video/cps1.cpp index 703cff584ab..d13af9d0f41 100644 --- a/src/mame/video/cps1.cpp +++ b/src/mame/video/cps1.cpp @@ -1855,7 +1855,7 @@ static const struct CPS1config cps1_config_table[]= {"sf2b", CPS_B_17, mapper_STF29, 0x36, 0, 0, 1 }, {"sf2b2", CPS_B_17, mapper_STF29, 0x36, 0, 0, 1 }, {"sf2ceupl", HACK_B_1, mapper_S9263B, 0x36, 0, 0, 1 }, - {"sf2rules", HACK_B_1, mapper_S9263B, 0x36, 0, 0, 2 }, + {"sf2rules", HACK_B_1, mapper_S9263B, 0x36, 0, 0, 1 }, {"sf2ceds6", HACK_B_1, mapper_S9263B, 0, 0, 0, 2 }, {"sf2cems6a", HACK_B_1, mapper_S9263B, 0, 0, 0, 2 }, {"sf2cems6b", HACK_B_1, mapper_S9263B, 0, 0, 0, 2 }, @@ -2290,7 +2290,7 @@ void cps_state::cps1_get_video_base() if (m_game_config->bootleg_kludge == 2) { m_cps_a_regs[CPS1_OBJ_BASE] = 0x9100; - scroll1xoff = -0x0c; + scroll1xoff = -0x10; scroll2xoff = -0x10; scroll3xoff = -0x10; }