ValveKeyValue
ValveKeyValue copied to clipboard
Support the '=' as an assignment (CS:GO)
I was looking at the leaked CS:GO code, they added the following:
// support the '=' as an assignment, makes multiple-keys-on-one-line easier to read in a keyvalues file
if ( *value == '=' && !wasQuoted )
{
Any idea what this looks like in text?
https://github.com/SteamDatabase/GameTracking-CSGO/blob/master/csgo/cfg/survival/survival_config.kv3
Could be this.