summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/galaxia.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/galaxia.c')
-rw-r--r--src/mame/video/galaxia.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/video/galaxia.c b/src/mame/video/galaxia.c
index a3217d3088f..09a58dd95da 100644
--- a/src/mame/video/galaxia.c
+++ b/src/mame/video/galaxia.c
@@ -27,11 +27,11 @@ PALETTE_INIT( galaxia )
0, 3, 6, 2,
0, 1, 4, 5, // unused?
0, 3, 1, 7,
-
+
// sprites
0, 4, 3, 6, 1, 5, 2, 7
};
-
+
for (int i = 0; i < 0x18; i++)
palette_set_color_rgb(machine, i, pal1bit(lut_clr[i] >> 0), pal1bit(lut_clr[i] >> 1), pal1bit(lut_clr[i] >> 2));
@@ -88,11 +88,11 @@ VIDEO_START( galaxia )
{
galaxia_state *state = machine.driver_data<galaxia_state>();
init_common(machine);
-
+
state->m_bg_tilemap = tilemap_create(machine, get_galaxia_bg_tile_info, tilemap_scan_rows, 8, 8, 32, 32);
state->m_bg_tilemap->set_transparent_pen(0);
state->m_bg_tilemap->set_scroll_cols(8);
-
+
}
VIDEO_START( astrowar )
@@ -123,7 +123,7 @@ SCREEN_UPDATE_IND16( galaxia )
bitmap.fill(0, cliprect);
cvs_update_stars(screen.machine(), bitmap, cliprect, STAR_PEN, 1);
state->m_bg_tilemap->draw(bitmap, cliprect, 0, 0);
-
+
for (y = cliprect.min_y; y <= cliprect.max_y; y++)
{
for (x = cliprect.min_x; x <= cliprect.max_x; x++)