Skip to content

Commit

Permalink
Merge pull request ddnet#9001 from ChillerDragon/pr_dm_plus_colors
Browse files Browse the repository at this point in the history
Change color of non standard vanilla gametypes
  • Loading branch information
def- authored Sep 20, 2024
2 parents 5189c18 + b443b40 commit 5558a69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/game/client/components/menus_browser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ static ColorRGBA GetGametypeTextColor(const char *pGametype)
if(pGametype[0] == 'i' || pGametype[0] == 'g')
HslaColor = ColorHSLA(0.0f, 1.0f, 0.75f);
else
HslaColor = ColorHSLA(0.375f, 1.0f, 0.35f);
HslaColor = ColorHSLA(0.40f, 1.0f, 0.75f);
}
else if(str_find_nocase(pGametype, "f-ddrace") || str_find_nocase(pGametype, "freeze"))
HslaColor = ColorHSLA(0.0f, 1.0f, 0.75f);
Expand Down

0 comments on commit 5558a69

Please sign in to comment.