- Added ACS functions SetCVarString and SetUserCVarString. These work just like their non-string

counterparts except that their value argument is an ACS string. (Note that they work with any
  type of cvar, not just string cvars.)
- Make UCVarValue::String point to a constant string.

SVN r4292 (trunk)
This commit is contained in:
Randy Heit 2013-05-27 02:20:32 +00:00
commit 587f1e83ba
3 changed files with 34 additions and 13 deletions

View file

@ -266,7 +266,7 @@ static GUID cGUID;
static char truestr[] = "true";
static char falsestr[] = "false";
char *FBaseCVar::ToString (UCVarValue value, ECVarType type)
const char *FBaseCVar::ToString (UCVarValue value, ECVarType type)
{
switch (type)
{