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)
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)
{