Skip to content

Commit

Permalink
show white color on black background
Browse files Browse the repository at this point in the history
  • Loading branch information
tritonas00 committed Mar 1, 2021
1 parent 9b59269 commit c37d55a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/main/network/Network.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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];
}
Expand Down

0 comments on commit c37d55a

Please # to comment.