From 354a0f2707c3d4d04f5087c21b3ccce35967465c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zoe=CC=88=20Blade?= Date: Wed, 8 Apr 2015 14:21:42 +0100 Subject: [PATCH] Tidy whitespace --- src/mame/drivers/gambl186.c | 4 ++-- src/mame/drivers/rmhaihai.c | 4 ++-- src/mame/drivers/ttchamp.c | 8 ++++---- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/mame/drivers/gambl186.c b/src/mame/drivers/gambl186.c index 1873fc1fb02..05a36e83ebf 100644 --- a/src/mame/drivers/gambl186.c +++ b/src/mame/drivers/gambl186.c @@ -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 ) ) diff --git a/src/mame/drivers/rmhaihai.c b/src/mame/drivers/rmhaihai.c index c90646ca5aa..8773dc1f606 100644 --- a/src/mame/drivers/rmhaihai.c +++ b/src/mame/drivers/rmhaihai.c @@ -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)); } diff --git a/src/mame/drivers/ttchamp.c b/src/mame/drivers/ttchamp.c index 21e0f2e81c9..6a6a969a200 100644 --- a/src/mame/drivers/ttchamp.c +++ b/src/mame/drivers/ttchamp.c @@ -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")