mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-12 15:14:35 +00:00
cleanup
This commit is contained in:
parent
02447f0996
commit
f776e73b04
11 changed files with 50 additions and 54 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue