From 5702bef80db084da8690f666847d939d27ca637a Mon Sep 17 00:00:00 2001 From: Vas Crabb Date: Fri, 11 Dec 2015 13:28:49 +1100 Subject: Try to fix S2636 offsets in games using legacy screen params --- src/mame/drivers/galaxia.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/mame/drivers/galaxia.cpp') diff --git a/src/mame/drivers/galaxia.cpp b/src/mame/drivers/galaxia.cpp index 23723f1ffce..d959db3662c 100644 --- a/src/mame/drivers/galaxia.cpp +++ b/src/mame/drivers/galaxia.cpp @@ -307,15 +307,15 @@ static MACHINE_CONFIG_START( galaxia, galaxia_state ) MCFG_VIDEO_START_OVERRIDE(galaxia_state,galaxia) MCFG_DEVICE_ADD("s2636_0", S2636, 0) - MCFG_S2636_OFFSETS(3, -26) + MCFG_S2636_OFFSETS(-13, -26) MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.25) MCFG_DEVICE_ADD("s2636_1", S2636, 0) - MCFG_S2636_OFFSETS(3, -26) + MCFG_S2636_OFFSETS(-13, -26) MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.25) MCFG_DEVICE_ADD("s2636_2", S2636, 0) - MCFG_S2636_OFFSETS(3, -26) + MCFG_S2636_OFFSETS(-13, -26) MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.25) /* sound hardware */ @@ -349,7 +349,7 @@ static MACHINE_CONFIG_START( astrowar, galaxia_state ) MCFG_VIDEO_START_OVERRIDE(galaxia_state,astrowar) MCFG_DEVICE_ADD("s2636_0", S2636, 0) - MCFG_S2636_OFFSETS(3, 0) + MCFG_S2636_OFFSETS(-13, -8) MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.25) /* sound hardware */ -- cgit v1.2.3