summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/lastduel.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/lastduel.c')
-rw-r--r--src/mame/video/lastduel.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/video/lastduel.c b/src/mame/video/lastduel.c
index 3810f0d9758..5db92b6dd37 100644
--- a/src/mame/video/lastduel.c
+++ b/src/mame/video/lastduel.c
@@ -189,14 +189,14 @@ WRITE16_HANDLER( lastduel_palette_word_w )
{
int red, green, blue, bright;
data = COMBINE_DATA(&paletteram16[offset]);
-
+
// Brightness parameter interpreted same way as CPS1
bright = 0x10 + (data&0x0f);
-
+
red = ((data>>12)&0x0f) * bright * 0x11 / 0x1f;
green = ((data>>8 )&0x0f) * bright * 0x11 / 0x1f;
blue = ((data>>4 )&0x0f) * bright * 0x11 / 0x1f;
-
+
palette_set_color (machine, offset, MAKE_RGB(red, green, blue));
}