summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/atarigx2.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/atarigx2.cpp')
-rw-r--r--src/mame/video/atarigx2.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/video/atarigx2.cpp b/src/mame/video/atarigx2.cpp
index 3159d1980a5..8d0b98235b0 100644
--- a/src/mame/video/atarigx2.cpp
+++ b/src/mame/video/atarigx2.cpp
@@ -182,10 +182,10 @@ uint32_t atarigx2_state::screen_update_atarigx2(screen_device &screen, bitmap_in
/* copy the motion objects on top */
{
bitmap_ind16 &mo_bitmap = m_rle->vram(0);
- int left = cliprect.min_x;
- int top = cliprect.min_y;
- int right = cliprect.max_x + 1;
- int bottom = cliprect.max_y + 1;
+ int left = cliprect.left();
+ int top = cliprect.top();
+ int right = cliprect.right() + 1;
+ int bottom = cliprect.bottom() + 1;
int x, y;
/* now blend with the playfield */