mirror of
https://github.com/holub/mame
synced 2025-04-20 15:32:45 +03:00
quasar: correct screen height
This commit is contained in:
parent
6a39394a3b
commit
205470e636
@ -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" )
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user