slipher

Results 1111 comments of slipher

Wrong commit message: `gl_shader: there is no USE_DELUXE_MAPPING macro anymore`

What is new is that underscore treatment as namespace is officially codified in the engine in some way, namely with tab completion. The "new convention" with dots doesn't seem like...

Apparently it just depends on PVS not to draw this. Setting `r_novis` you can see it without using the material system. Maybe this should be considered a map bug

There's a great number of maps like this so it would be nice to support the vis somehow. Many of them have the bug even with the default renderer though....

This seems like an unnecessarily hacky way to restore the functionality in the linked commit. All you would need to do is add a color-preserving variant of `G_LogPrintf` no? (Or...

All right I looked at it closer and understand that G_LogPrintf prints to two log targets with and without color. I think the goal here could be achieved by decoloring...

> I'm not sure I follow the first proposal. If you call StripColors on the format string (e.g. `^3Deconstruct: %d %d %s %s: %s %s by %s`) before printf-style formatting,...

That case is easily handled. ``` G_LogPrintf( "ClientConnect: %i [%s] (%s) \"%s^*\" \"%s^*\"", clientNum, client->pers.ip.str[0] ? client->pers.ip.str : "127.0.0.1", client->pers.guid, Color::StripColors( client->pers.netname ).c_str(), client->pers.netname ); ```