This commit is contained in:
Jeff Hutchinson 2021-04-02 00:57:49 -04:00
parent 02447f0996
commit f776e73b04
11 changed files with 50 additions and 54 deletions

View file

@ -372,7 +372,7 @@ public:
return;
}
value.setString(newValue, dStrlen(newValue));
value.setString(newValue);
// Fire off the notification if we have one.
if (notify)
@ -456,6 +456,9 @@ struct ConsoleValueFrame
ConsoleValue* values;
bool isReference;
ConsoleValueFrame() : values(NULL), isReference(false)
{}
ConsoleValueFrame(ConsoleValue* vals, bool isRef)
{
values = vals;