From 4cee75d13a69ca297150b81d5e4842690f68a0ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kadir=20Y=C3=BCksel?= <49368530+yuksel-kadir@users.noreply.github.com> Date: Sun, 20 Aug 2023 13:55:40 +0300 Subject: [PATCH] Change the color of the car arrow Change the color of the car blip's arrow color from pink to blue like in LCS --- src/core/Radar.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/core/Radar.h b/src/core/Radar.h index dbfcfd0d..747aff07 100644 --- a/src/core/Radar.h +++ b/src/core/Radar.h @@ -2,9 +2,9 @@ #include "Sprite2d.h" #include "Draw.h" -#define CARBLIP_MARKER_COLOR_R 252 -#define CARBLIP_MARKER_COLOR_G 138 -#define CARBLIP_MARKER_COLOR_B 242 +#define CARBLIP_MARKER_COLOR_R 44 +#define CARBLIP_MARKER_COLOR_G 48 +#define CARBLIP_MARKER_COLOR_B 157 #define CARBLIP_MARKER_COLOR_A 255 #define CHARBLIP_MARKER_COLOR_R 252