summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/galaxold.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/galaxold.cpp')
-rw-r--r--src/mame/video/galaxold.cpp35
1 files changed, 13 insertions, 22 deletions
diff --git a/src/mame/video/galaxold.cpp b/src/mame/video/galaxold.cpp
index 51b18fc6b55..7f3a46a8238 100644
--- a/src/mame/video/galaxold.cpp
+++ b/src/mame/video/galaxold.cpp
@@ -531,16 +531,13 @@ VIDEO_START_MEMBER(galaxold_state,pisces)
#ifdef UNUSED_FUNCTION
void galaxold_state::theend_draw_bullets(bitmap_ind16 &bitmap, const rectangle &cliprect, int offs, int x, int y)
{
- int i;
-
-
/* same as Galaxian, but all bullets are yellow */
- for (i = 0; i < 4; i++)
+ for (int i = 0; i < 4; i++)
{
x--;
if (cliprect.contains(x, y))
- bitmap.pix16(y, x) = BULLETS_COLOR_BASE;
+ bitmap.pix(y, x) = BULLETS_COLOR_BASE;
}
}
@@ -1040,22 +1037,16 @@ void galaxold_state::drivfrcg_modify_color(uint8_t *color)
void galaxold_state::galaxold_draw_bullets(bitmap_ind16 &bitmap, const rectangle &cliprect, int offs, int x, int y)
{
- int i;
-
-
- for (i = 0; i < 4; i++)
+ for (int i = 0; i < 4; i++)
{
x--;
if (cliprect.contains(x, y))
{
- int color;
-
-
/* yellow missile, white shells (this is the terminology on the schematics) */
- color = ((offs == 7*4) ? BULLETS_COLOR_BASE : BULLETS_COLOR_BASE + 1);
+ int const color = ((offs == 7*4) ? BULLETS_COLOR_BASE : BULLETS_COLOR_BASE + 1);
- bitmap.pix16(y, x) = color;
+ bitmap.pix(y, x) = color;
}
}
}
@@ -1068,7 +1059,7 @@ void galaxold_state::scrambold_draw_bullets(bitmap_ind16 &bitmap, const rectangl
if (cliprect.contains(x, y))
/* yellow bullets */
- bitmap.pix16(y, x) = BULLETS_COLOR_BASE;
+ bitmap.pix(y, x) = BULLETS_COLOR_BASE;
}
void galaxold_state::darkplnt_draw_bullets(bitmap_ind16 &bitmap, const rectangle &cliprect, int offs, int x, int y)
@@ -1078,32 +1069,32 @@ void galaxold_state::darkplnt_draw_bullets(bitmap_ind16 &bitmap, const rectangle
x = x - 6;
if (cliprect.contains(x, y))
- bitmap.pix16(y, x) = 32 + m_darkplnt_bullet_color;
+ bitmap.pix(y, x) = 32 + m_darkplnt_bullet_color;
}
void galaxold_state::dambustr_draw_bullets(bitmap_ind16 &bitmap, const rectangle &cliprect, int offs, int x, int y)
{
- int i, color;
-
if (flip_screen_x()) x++;
x = x - 6;
/* bullets are 2 pixels wide */
- for (i = 0; i < 2; i++)
+ for (int i = 0; i < 2; i++)
{
+ int color;
if (offs < 4*4)
{
color = BULLETS_COLOR_BASE;
y--;
}
- else {
+ else
+ {
color = BULLETS_COLOR_BASE + 1;
x--;
}
if (cliprect.contains(x, y))
- bitmap.pix16(y, x) = color;
+ bitmap.pix(y, x) = color;
}
}
@@ -1368,7 +1359,7 @@ void galaxold_state::plot_star(bitmap_ind16 &bitmap, int x, int y, int color, co
y = 255 - y;
if (cliprect.contains(x, y))
- bitmap.pix16(y, x) = m_stars_colors_start + color;
+ bitmap.pix(y, x) = m_stars_colors_start + color;
}
void galaxold_state::noop_draw_stars(bitmap_ind16 &bitmap, const rectangle &cliprect)