summaryrefslogtreecommitdiffstats
path: root/src/mame/drivers/goldart.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/goldart.cpp')
-rw-r--r--src/mame/drivers/goldart.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/goldart.cpp b/src/mame/drivers/goldart.cpp
index ec6ddc089b2..975211b4e8c 100644
--- a/src/mame/drivers/goldart.cpp
+++ b/src/mame/drivers/goldart.cpp
@@ -117,7 +117,7 @@ uint32_t goldart_state::screen_update_goldart(screen_device& screen, bitmap_ind1
count++;
- dstptr_bitmap[x*2] = ((data&0xf0)>>4) | (data2 & 0xf0);;
+ dstptr_bitmap[x*2] = ((data&0xf0)>>4) | (data2 & 0xf0);
dstptr_bitmap[(x*2)+1] = (data&0x0f) | ((data2 & 0x0f)<<4);
}
}