Tidy whitespace

This commit is contained in:
Zoë Blade 2015-04-08 14:21:42 +01:00
parent 592e0cac50
commit 354a0f2707
3 changed files with 8 additions and 8 deletions

View File

@ -21,7 +21,7 @@ U3 Max691cpe
U300 Nec D7759GC (10Mhz xtal near it)
TODO:
- No idea about how to surpass the "No Funzione" (sic) screen. According to the bad settings almost
- No idea about how to surpass the "No Funzione" (sic) screen. According to the bad settings almost
surely it wants EEPROM hooked up (i/o at 0x680/0x682?)
*/
@ -109,7 +109,7 @@ static INPUT_PORTS_START( gambl186 )
PORT_BIT( 0x0400, IP_ACTIVE_LOW, IPT_POKER_HOLD3 )
PORT_BIT( 0x0800, IP_ACTIVE_LOW, IPT_POKER_HOLD4 )
PORT_BIT( 0x1000, IP_ACTIVE_LOW, IPT_POKER_HOLD5 )
PORT_BIT( 0x2000, IP_ACTIVE_LOW, IPT_START1 )
PORT_BIT( 0x2000, IP_ACTIVE_LOW, IPT_START1 )
PORT_DIPNAME( 0x4000, 0x4000, DEF_STR( Unknown ) )
PORT_DIPSETTING( 0x4000, DEF_STR( Off ) )
PORT_DIPSETTING( 0x0000, DEF_STR( On ) )

View File

@ -71,7 +71,7 @@ public:
DECLARE_MACHINE_RESET(themj);
UINT32 screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
TILE_GET_INFO_MEMBER(get_bg_tile_info);
};
@ -102,7 +102,7 @@ void rmhaihai_state::video_start()
{
m_bg_tilemap = &machine().tilemap().create(m_gfxdecode, tilemap_get_info_delegate(FUNC(rmhaihai_state::get_bg_tile_info),this), TILEMAP_SCAN_ROWS,
8, 8, 64, 32);
save_item(NAME(m_keyboard_cmd));
save_item(NAME(m_gfxbank));
}

View File

@ -437,8 +437,8 @@ WRITE16_MEMBER(ttchamp_state::ttchamp_mem_w)
{
if (m_port10 & 0x30) // this is set when moving objects are cleared, although not screen clears?
{
/* guess: assume that bit 4 is for layer 0 and bit 5 for layer 1
(according to 0x21 setted at the "Clubs League" color fade-out)
/* guess: assume that bit 4 is for layer 0 and bit 5 for layer 1
(according to 0x21 setted at the "Clubs League" color fade-out)
*/
if(m_port10 & 0x10)
m_videoram0[offset] = 0x0000;
@ -450,7 +450,7 @@ WRITE16_MEMBER(ttchamp_state::ttchamp_mem_w)
else
{
UINT8 data;
data = (src[(m_spritesaddr * 2) + 1]);
//data |= vram[offset] >> 8;
@ -636,7 +636,7 @@ static MACHINE_CONFIG_START( ttchamp, ttchamp_state )
MCFG_SCREEN_PALETTE("palette")
MCFG_PALETTE_ADD("palette", 0x400)
MCFG_NVRAM_ADD_0FILL("backram")
MCFG_SPEAKER_STANDARD_MONO("mono")