summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/namcona1.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/namcona1.c')
-rw-r--r--src/mame/video/namcona1.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mame/video/namcona1.c b/src/mame/video/namcona1.c
index c6491dbca58..a536efab77d 100644
--- a/src/mame/video/namcona1.c
+++ b/src/mame/video/namcona1.c
@@ -1,7 +1,7 @@
/* Namco System NA1/2 Video Hardware */
-/*
-TODO:
+/*
+TODO:
- dynamic screen resolution
- bg pen (or the pen of the lower tilemap?)
- hook up roz tilemaps with roz enable / disable and tweak it (mainly missing offsets)
@@ -390,7 +390,7 @@ static void pdraw_tile(running_machine *machine,
if (pri[x] <= priority)
{
int c = source[x_index>>16];
- dest[x] = pal_base + c;
+ dest[x] = pal_base + c;
}
pri[x] = 0xff;
@@ -591,7 +591,7 @@ static void draw_background(running_machine *machine, bitmap_t *bitmap, const re
tilemap_set_scrollx( bg_tilemap[which], 0, scrollx );
tilemap_set_scrolly( bg_tilemap[which], 0, scrolly );
tilemap_draw_primask( bitmap, &clip, bg_tilemap[which], 0, primask, 0 );
-
+
#if 0
INT16 incxy, incyx, incxx, incyy;
INT16 xoffset, yoffset;
@@ -615,7 +615,7 @@ static void draw_background(running_machine *machine, bitmap_t *bitmap, const re
incxx << 8, incxy << 8, incyx << 8, incyy << 8,
0, 0, primask, 0);
#endif
-
+
}
}
}
@@ -651,7 +651,7 @@ VIDEO_UPDATE( namcona1 )
} /* next tilemap */
fillbitmap( priority_bitmap,0,cliprect );
- // It fixes bg in emeralda
+ // It fixes bg in emeralda
fillbitmap( bitmap,/* 0 */ 0xff,cliprect );
for( priority = 0; priority<8; priority++ )