Change Nametags back to CAP color

This commit is contained in:
Agent X 2024-07-14 14:19:47 -04:00
parent 035e04ee31
commit 5e4ae9499b
1 changed files with 3 additions and 3 deletions

View File

@ -96,9 +96,9 @@ void nametags_render(void) {
snprintf(name, MAX_CONFIG_STRING, "%s", np->name);
name_without_hex(name);
Color color = {
np->overridePalette.parts[EMBLEM][0],
np->overridePalette.parts[EMBLEM][1],
np->overridePalette.parts[EMBLEM][2]
np->overridePalette.parts[CAP][0],
np->overridePalette.parts[CAP][1],
np->overridePalette.parts[CAP][2]
};
f32 measure = djui_hud_measure_text(name) * scale * 0.5f;