From c37d55a1d83e8705ed84f453275dcd6a5a6bc82f Mon Sep 17 00:00:00 2001 From: tritonas00 Date: Sat, 27 Feb 2021 08:50:32 +0200 Subject: [PATCH] show white color on black background --- source/main/network/Network.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/main/network/Network.cpp b/source/main/network/Network.cpp index 15f927cdd0..b8d1ac7b00 100644 --- a/source/main/network/Network.cpp +++ b/source/main/network/Network.cpp @@ -95,7 +95,7 @@ Ogre::ColourValue Network::GetPlayerColor(int color_num) { int numColours = sizeof(MP_COLORS) / sizeof(Ogre::ColourValue); if (color_num < 0 || color_num >= numColours) - return Ogre::ColourValue::ZERO; + return Ogre::ColourValue::White; return MP_COLORS[color_num]; }