From a34c094fb2fb87b83dc69e0fee9b5335414231da Mon Sep 17 00:00:00 2001 From: Jupeyy Date: Sun, 24 Oct 2021 01:54:18 +0200 Subject: [PATCH] Remove pure greyscale colors --- src/engine/client/ghost.cpp | 2 +- src/engine/shared/demo.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/engine/client/ghost.cpp b/src/engine/client/ghost.cpp index 96b4a701f..ac89c6b0e 100644 --- a/src/engine/client/ghost.cpp +++ b/src/engine/client/ghost.cpp @@ -11,7 +11,7 @@ static const unsigned char gs_aHeaderMarker[8] = {'T', 'W', 'G', 'H', 'O', 'S', static const unsigned char gs_CurVersion = 6; static const int gs_NumTicksOffset = 93; -static const ColorRGBA gs_GhostPrintColor{0.6f, 0.6f, 0.6f, 1.0f}; +static const ColorRGBA gs_GhostPrintColor{0.65f, 0.6f, 0.6f, 1.0f}; CGhostRecorder::CGhostRecorder() { diff --git a/src/engine/shared/demo.cpp b/src/engine/shared/demo.cpp index 3aadbeea4..c50565af7 100644 --- a/src/engine/shared/demo.cpp +++ b/src/engine/shared/demo.cpp @@ -28,7 +28,7 @@ static const unsigned char s_VersionTickCompression = 5; // demo files with this static const int s_LengthOffset = 152; static const int s_NumMarkersOffset = 176; -static const ColorRGBA gs_DemoPrintColor{0.7f, 0.7f, 0.7f, 1.0f}; +static const ColorRGBA gs_DemoPrintColor{0.75f, 0.7f, 0.7f, 1.0f}; CDemoRecorder::CDemoRecorder(class CSnapshotDelta *pSnapshotDelta, bool NoMapData) {