Skip to content

Commit

Permalink
consistent coloring for menu sections and tab headers
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiangreffrath committed Feb 11, 2025
1 parent 1e5f4c8 commit 2bf2639
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mn_setup.c
Original file line number Diff line number Diff line change
Expand Up @@ -519,11 +519,11 @@ static void DrawTabs(void)

menu_buffer[0] = '\0';
strcpy(menu_buffer, tabs[i].text);
DrawMenuStringEx(tabs[i].flags, x, rect->y, CR_GOLD);
DrawMenuStringEx(tabs[i].flags, x, rect->y, CR_TITLE);
if (i == current_page)
{
V_FillRect(x + video.deltaw, rect->y + M_SPC, rect->w, 1,
cr_gold[cr_shaded[v_lightest_color]]);
colrngs[CR_TITLE][cr_shaded[v_lightest_color]]);
}

rect->x = x;
Expand Down

0 comments on commit 2bf2639

Please sign in to comment.