summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/segas32.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/segas32.c')
-rw-r--r--src/mame/video/segas32.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/segas32.c b/src/mame/video/segas32.c
index f335b4548d7..a64680bae79 100644
--- a/src/mame/video/segas32.c
+++ b/src/mame/video/segas32.c
@@ -1611,7 +1611,7 @@ static void sprite_swap_buffers(segas32_state *state)
#define sprite_draw_pixel_16(trans) \
/* only draw if onscreen, not 0 or 15 */ \
- if (x >= clipin.min_x && x <= clipin.max_x && \
+ if (x >= clipin.min_x && x <= clipin.max_x && \
(!do_clipout || x < clipout.min_x || x > clipout.max_x) && \
pix != trans) \
{ \
@@ -1640,7 +1640,7 @@ static void sprite_swap_buffers(segas32_state *state)
#define sprite_draw_pixel_256(trans) \
/* only draw if onscreen, not 0 or 15 */ \
- if (x >= clipin.min_x && x <= clipin.max_x && \
+ if (x >= clipin.min_x && x <= clipin.max_x && \
(!do_clipout || x < clipout.min_x || x > clipout.max_x) && \
pix != trans) \
{ \