Updates the console text colour for directories from dark blue to light
cyan. Fixed #196


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