From baff519a213c5aa1e1b33e9a4d36634a554b029d Mon Sep 17 00:00:00 2001 From: Benau Date: Thu, 1 Feb 2018 11:28:38 +0800 Subject: [PATCH] Use the correct vertex color for rubber band --- src/items/rubber_band.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/items/rubber_band.cpp b/src/items/rubber_band.cpp index 8818d2f52..1d8623722 100644 --- a/src/items/rubber_band.cpp +++ b/src/items/rubber_band.cpp @@ -51,7 +51,7 @@ RubberBand::RubberBand(Plunger *plunger, AbstractKart *kart) { return; } - video::SColor color(77, 179, 0, 0); + video::SColor color(255, 179, 0, 0); if (CVS->isDeferredEnabled()) { color.setRed(SP::srgb255ToLinear(color.getRed()));