summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/blockout.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/blockout.c')
-rw-r--r--src/mame/video/blockout.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/video/blockout.c b/src/mame/video/blockout.c
index 2642ebd1fb7..14b0c5c0588 100644
--- a/src/mame/video/blockout.c
+++ b/src/mame/video/blockout.c
@@ -83,16 +83,16 @@ static void update_pixels( running_machine *machine, int x, int y )
front = state->videoram[y * 256 + x / 2];
back = state->videoram[0x10000 + y * 256 + x / 2];
- if (front >> 8)
+ if (front >> 8)
color = front >> 8;
- else
+ else
color = (back >> 8) + 256;
*BITMAP_ADDR16(state->tmpbitmap, y, x) = color;
- if (front & 0xff)
+ if (front & 0xff)
color = front & 0xff;
- else
+ else
color = (back & 0xff) + 256;
*BITMAP_ADDR16(state->tmpbitmap, y, x + 1) = color;