summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/egghunt.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/egghunt.c')
-rw-r--r--src/mame/drivers/egghunt.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mame/drivers/egghunt.c b/src/mame/drivers/egghunt.c
index c83c005f315..8a0edd59a83 100644
--- a/src/mame/drivers/egghunt.c
+++ b/src/mame/drivers/egghunt.c
@@ -115,10 +115,10 @@ static void draw_sprites( running_machine &machine, bitmap_ind16 &bitmap,const r
sy = 240 - sy;
}
drawgfx_transpen(bitmap,cliprect,machine.gfx[1],
- code,
- color,
- flipscreen,flipscreen,
- sx,sy,15);
+ code,
+ color,
+ flipscreen,flipscreen,
+ sx,sy,15);
}
}
@@ -409,12 +409,12 @@ void egghunt_state::machine_reset()
static MACHINE_CONFIG_START( egghunt, egghunt_state )
/* basic machine hardware */
- MCFG_CPU_ADD("maincpu", Z80,12000000/2) /* 6 MHz ?*/
+ MCFG_CPU_ADD("maincpu", Z80,12000000/2) /* 6 MHz ?*/
MCFG_CPU_PROGRAM_MAP(egghunt_map)
MCFG_CPU_IO_MAP(io_map)
MCFG_CPU_VBLANK_INT_DRIVER("screen", egghunt_state, irq0_line_hold) // or 2 like mitchell.c?
- MCFG_CPU_ADD("audiocpu", Z80,12000000/2) /* 6 MHz ?*/
+ MCFG_CPU_ADD("audiocpu", Z80,12000000/2) /* 6 MHz ?*/
MCFG_CPU_PROGRAM_MAP(sound_map)