Skip to content

Commit

Permalink
Change directory text colour in console from blue to light cyan (#197)
Browse files Browse the repository at this point in the history
Updates the console text colour for directories from dark blue to light
cyan. Fixed #196

![colour-old](https://github.com/user-attachments/assets/1e850b31-39a5-48b6-8804-6dd679f2f0f0)

![colour-new](https://github.com/user-attachments/assets/74124d33-cd0c-4b14-bf21-c65f0709cfd3)
  • Loading branch information
hemebond authored Sep 18, 2024
1 parent 16ebb99 commit 0c17657
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion console.c
Original file line number Diff line number Diff line change
Expand Up @@ -3071,7 +3071,8 @@ int Con_CompleteCommandLine(cmd_state_t *cmd, qbool is_console)
Con_Printf("\n%i possible filenames\n", resultbuf.numstrings + dirbuf.numstrings);
for(i = 0; i < dirbuf.numstrings; ++i)
{
Con_Printf("^4%s^7/\n", dirbuf.strings[i]);
// Print directory names/paths to the console in light blue
Con_Printf("^5%s^7/\n", dirbuf.strings[i]);
}
for(i = 0; i < resultbuf.numstrings; ++i)
{
Expand Down

0 comments on commit 0c17657

Please sign in to comment.