From 205470e636503597f8c4b99e4003b74fcfbfdca6 Mon Sep 17 00:00:00 2001 From: hap Date: Sun, 1 Dec 2024 14:54:25 +0100 Subject: quasar: correct screen height --- src/mame/zaccaria/galaxia.cpp | 4 ++-- src/mame/zaccaria/quasar.cpp | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/mame/zaccaria/galaxia.cpp b/src/mame/zaccaria/galaxia.cpp index 7aaec3228c2..efdb10555db 100644 --- a/src/mame/zaccaria/galaxia.cpp +++ b/src/mame/zaccaria/galaxia.cpp @@ -660,7 +660,7 @@ static INPUT_PORTS_START( galaxia ) PORT_DIPSETTING( 0x02, DEF_STR( Medium ) ) PORT_DIPSETTING( 0x04, "Medium-High" ) PORT_DIPSETTING( 0x06, DEF_STR( High ) ) - PORT_DIPNAME( 0x18, 0x10, "Extended Play" ) PORT_DIPLOCATION("2N:4,3") + PORT_DIPNAME( 0x18, 0x10, DEF_STR( Bonus_Life ) ) PORT_DIPLOCATION("2N:4,3") PORT_DIPSETTING( 0x00, DEF_STR( None ) ) PORT_DIPSETTING( 0x08, "2500" ) PORT_DIPSETTING( 0x10, "3500" ) @@ -687,7 +687,7 @@ static INPUT_PORTS_START( astrowar ) PORT_INCLUDE( galaxia ) PORT_MODIFY("DSW1") - PORT_DIPNAME( 0x18, 0x10, "Extended Play" ) PORT_DIPLOCATION("2N:4,3") + PORT_DIPNAME( 0x18, 0x10, DEF_STR( Bonus_Life ) ) PORT_DIPLOCATION("2N:4,3") PORT_DIPSETTING( 0x00, DEF_STR( None ) ) PORT_DIPSETTING( 0x08, "3000" ) PORT_DIPSETTING( 0x10, "5000" ) diff --git a/src/mame/zaccaria/quasar.cpp b/src/mame/zaccaria/quasar.cpp index 58ed64e7307..a6cc31ed18c 100644 --- a/src/mame/zaccaria/quasar.cpp +++ b/src/mame/zaccaria/quasar.cpp @@ -508,7 +508,7 @@ static INPUT_PORTS_START( quasar ) PORT_DIPSETTING( 0x08, DEF_STR( Medium ) ) PORT_DIPSETTING( 0x10, DEF_STR( Difficult ) ) PORT_DIPSETTING( 0x18, DEF_STR( Very_Difficult ) ) - PORT_DIPNAME( 0x60, 0x40, "Extended Play" ) PORT_DIPLOCATION("SW2:6,7") + PORT_DIPNAME( 0x60, 0x40, DEF_STR( Bonus_Life ) ) PORT_DIPLOCATION("SW2:6,7") PORT_DIPSETTING( 0x00, DEF_STR( None ) ) PORT_DIPSETTING( 0x20, "5500" ) PORT_DIPSETTING( 0x40, "7500" ) @@ -574,7 +574,7 @@ void quasar_state::quasar(machine_config &config) m_screen->set_refresh_hz(50); // from dot clock m_screen->set_vblank_time(ATTOSECONDS_IN_USEC(3500)); m_screen->set_size(256, 312); - m_screen->set_visarea(1*8+1, 29*8-1, 2*8, 32*8-1); + m_screen->set_visarea(0*8, 29*8-1, 2*8, 32*8-1); m_screen->set_screen_update(FUNC(quasar_state::screen_update)); m_screen->set_palette(m_palette); @@ -582,15 +582,15 @@ void quasar_state::quasar(machine_config &config) PALETTE(config, m_palette, FUNC(quasar_state::palette), (64 + 1) * 8 + (4 * 256), 0x500); S2636(config, m_s2636[0], 0); - m_s2636[0]->set_offsets(-13, -35); + m_s2636[0]->set_offsets(-13, -26); m_s2636[0]->add_route(ALL_OUTPUTS, "mono", 0.2); S2636(config, m_s2636[1], 0); - m_s2636[1]->set_offsets(-13, -35); + m_s2636[1]->set_offsets(-13, -26); m_s2636[1]->add_route(ALL_OUTPUTS, "mono", 0.2); S2636(config, m_s2636[2], 0); - m_s2636[2]->set_offsets(-13, -35); + m_s2636[2]->set_offsets(-13, -26); m_s2636[2]->add_route(ALL_OUTPUTS, "mono", 0.2); // sound hardware -- cgit v1.2.3