diff options
author | Nikolay <nickvnuk@gmail.com> | 2021-01-10 11:44:40 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-10 11:44:40 +0100 |
commit | b0e395e8532f99f53c94178dbabff3433b6d333b (patch) | |
tree | 9219a9c559eece2b89347a0652ae6dfe87772fec | |
parent | Update command definitions (diff) | |
parent | Merge branch 'lcs' of https://github.com/majesticCoding/re3 into lcs (diff) | |
download | re3-b0e395e8532f99f53c94178dbabff3433b6d333b.tar re3-b0e395e8532f99f53c94178dbabff3433b6d333b.tar.gz re3-b0e395e8532f99f53c94178dbabff3433b6d333b.tar.bz2 re3-b0e395e8532f99f53c94178dbabff3433b6d333b.tar.lz re3-b0e395e8532f99f53c94178dbabff3433b6d333b.tar.xz re3-b0e395e8532f99f53c94178dbabff3433b6d333b.tar.zst re3-b0e395e8532f99f53c94178dbabff3433b6d333b.zip |
-rw-r--r-- | src/control/Script.h | 6 | ||||
-rw-r--r-- | src/core/Radar.h | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/src/control/Script.h b/src/control/Script.h index ae1838d7..3220a2b3 100644 --- a/src/control/Script.h +++ b/src/control/Script.h @@ -30,9 +30,9 @@ void FlushLog(); #define UPSIDEDOWN_TURN_SPEED_THRESHOLD (0.02f) #define UPSIDEDOWN_TIMER_THRESHOLD (1000) -#define SPHERE_MARKER_R (252) -#define SPHERE_MARKER_G (138) -#define SPHERE_MARKER_B (242) +#define SPHERE_MARKER_R (255) +#define SPHERE_MARKER_G (255) +#define SPHERE_MARKER_B (128) #define SPHERE_MARKER_A (228) #define SPHERE_MARKER_PULSE_PERIOD 2048 #define SPHERE_MARKER_PULSE_FRACTION 0.1f diff --git a/src/core/Radar.h b/src/core/Radar.h index d051745a..ec047b74 100644 --- a/src/core/Radar.h +++ b/src/core/Radar.h @@ -16,9 +16,9 @@ #define OBJECTBLIP_MARKER_COLOR_B 242 #define OBJECTBLIP_MARKER_COLOR_A 255 -#define COORDBLIP_MARKER_COLOR_R 252 -#define COORDBLIP_MARKER_COLOR_G 138 -#define COORDBLIP_MARKER_COLOR_B 242 +#define COORDBLIP_MARKER_COLOR_R 255 +#define COORDBLIP_MARKER_COLOR_G 255 +#define COORDBLIP_MARKER_COLOR_B 128 #define COORDBLIP_MARKER_COLOR_A 228 #define NUM_MAP_LEGENDS 75 |