summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/madalien.c
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2013-01-11 07:32:46 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2013-01-11 07:32:46 +0000
commit0e19f641d3186cdbf51f8ca857e2b07ab95779c2 (patch)
tree234109de1123b13f217494af4b3f8efad346d5cc /src/mame/video/madalien.c
parent111157ca09a9ff60fe4a9ba49173c315e94314fa (diff)
Cleanups and version bumpmame0148
Diffstat (limited to 'src/mame/video/madalien.c')
-rw-r--r--src/mame/video/madalien.c28
1 files changed, 14 insertions, 14 deletions
diff --git a/src/mame/video/madalien.c b/src/mame/video/madalien.c
index 349ad08c5bc..f43b478a39c 100644
--- a/src/mame/video/madalien.c
+++ b/src/mame/video/madalien.c
@@ -267,10 +267,10 @@ UINT32 madalien_state::screen_update_madalien(screen_device &screen, bitmap_ind1
draw_foreground(machine(), bitmap, cliprect, flip);
/* highlight section A (outside of tunnels).
- * also, bit 1 of the video_flags register (6A) is
- * combined with the headlight signal through NOR gate 1A,
- * which is used to light up the tunnel when an alien explodes
- */
+ * also, bit 1 of the video_flags register (6A) is
+ * combined with the headlight signal through NOR gate 1A,
+ * which is used to light up the tunnel when an alien explodes
+ */
if (scroll_mode != 1 || *m_video_flags & 2)
{
int x;
@@ -379,16 +379,16 @@ GFXDECODE_END
static const mc6845_interface mc6845_intf =
{
- "screen", /* screen we are acting on */
- 8, /* number of pixels per video memory address */
- NULL, /* before pixel update callback */
- NULL, /* row update callback */
- NULL, /* after pixel update callback */
- DEVCB_NULL, /* callback for display state changes */
- DEVCB_NULL, /* callback for cursor state changes */
- DEVCB_NULL, /* HSYNC callback */
- DEVCB_NULL, /* VSYNC callback */
- NULL /* update address callback */
+ "screen", /* screen we are acting on */
+ 8, /* number of pixels per video memory address */
+ NULL, /* before pixel update callback */
+ NULL, /* row update callback */
+ NULL, /* after pixel update callback */
+ DEVCB_NULL, /* callback for display state changes */
+ DEVCB_NULL, /* callback for cursor state changes */
+ DEVCB_NULL, /* HSYNC callback */
+ DEVCB_NULL, /* VSYNC callback */
+ NULL /* update address callback */
};