summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/bionicc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/bionicc.c')
-rw-r--r--src/mame/video/bionicc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/bionicc.c b/src/mame/video/bionicc.c
index 6833fbf3949..1212fd47b3a 100644
--- a/src/mame/video/bionicc.c
+++ b/src/mame/video/bionicc.c
@@ -132,8 +132,8 @@ WRITE16_HANDLER( bionicc_txvideoram_w )
WRITE16_HANDLER( bionicc_paletteram_w )
{
/* The bottom bits are 'intensity' here, but level 2 of Top Secret shows that even
- when intensity is zero the colour is not reduced to pure black, (the sky should stay
- at dark blue rather than absolute black) */
+ when intensity is zero the colour is not reduced to pure black, (the sky should stay
+ at dark blue rather than absolute black) */
data = COMBINE_DATA(&paletteram16[offset]);
paletteram16_RRRRGGGGBBBBIIII_word_w(offset,(data & 0xfff0) | ((data & 0x0007) << 1) | 1, 0);
}