summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/jedi.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/jedi.cpp')
-rw-r--r--src/mame/video/jedi.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/video/jedi.cpp b/src/mame/video/jedi.cpp
index d3ce309fa28..d99be2e9568 100644
--- a/src/mame/video/jedi.cpp
+++ b/src/mame/video/jedi.cpp
@@ -108,8 +108,8 @@ void jedi_state::do_pen_lookup(bitmap_rgb32 &bitmap, const rectangle &cliprect)
get_pens(pens);
- for (y = cliprect.min_y; y <= cliprect.max_y; y++)
- for(x = cliprect.min_x; x <= cliprect.max_x; x++)
+ for (y = cliprect.top(); y <= cliprect.bottom(); y++)
+ for(x = cliprect.left(); x <= cliprect.right(); x++)
bitmap.pix32(y, x) = pens[bitmap.pix32(y, x)];
}
@@ -158,12 +158,12 @@ void jedi_state::draw_background_and_text(bitmap_rgb32 &bitmap, const rectangle
memset(background_line_buffer, 0, 0x200 * sizeof(int));
- for (y = cliprect.min_y; y <= cliprect.max_y; y++)
+ for (y = cliprect.top(); y <= cliprect.bottom(); y++)
{
int x;
int bg_last_col = 0;
- for (x = cliprect.min_x; x <= cliprect.max_x; x += 2)
+ for (x = cliprect.left(); x <= cliprect.right(); x += 2)
{
int tx_col1, tx_col2, bg_col;
int bg_tempcol;
@@ -285,7 +285,7 @@ void jedi_state::draw_sprites(bitmap_rgb32 &bitmap, const rectangle &cliprect)
int i;
uint16_t x = spriteram[offs + 0x100] + ((spriteram[offs + 0x40] & 0x01) << 8) - 2;
- if ((y < cliprect.min_y) || (y > cliprect.max_y))
+ if ((y < cliprect.top()) || (y > cliprect.bottom()))
continue;
if (flip_x)