From 55dc88bf5a64e6d13b3c22a518c29d04bd20538c Mon Sep 17 00:00:00 2001 From: Mike Swanson Date: Thu, 19 Sep 2019 15:21:27 -0700 Subject: [PATCH] playpal: make red more intense (again) Two commits ago, I softened the effect the red palettes had to avoid the last one being pure-red. While I still think it should be a little visible on the last one, it was maybe a bit too visible. This might be a balance between the two. --- lumps/playpal/playpal | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lumps/playpal/playpal b/lumps/playpal/playpal index 86166511..0d4f5641 100755 --- a/lumps/playpal/playpal +++ b/lumps/playpal/playpal @@ -192,7 +192,7 @@ palettes.append(base_pal) # STARTREDPALS for i in range(8): - p = (i + 1) * 0.8 / 8 + p = (i + 1) * 0.9 / 8 palettes.append(bias_palette_towards(base_pal, (255, 0, 0), p))