mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-13 11:43:49 +00:00
fixed internal types.
This commit is contained in:
parent
93500b6ac4
commit
a2dea07d8b
2 changed files with 7 additions and 0 deletions
|
|
@ -468,6 +468,7 @@ char *typeValueEmpty = "";
|
|||
Dictionary::Entry::Entry(StringTableEntry in_name)
|
||||
{
|
||||
name = in_name;
|
||||
type = TypeInternalString;
|
||||
notify = NULL;
|
||||
nextEntry = NULL;
|
||||
mUsage = NULL;
|
||||
|
|
|
|||
|
|
@ -344,11 +344,17 @@ public:
|
|||
|
||||
Entry() {
|
||||
name = NULL;
|
||||
type = TypeInternalString;
|
||||
notify = NULL;
|
||||
nextEntry = NULL;
|
||||
mUsage = NULL;
|
||||
mIsConstant = false;
|
||||
mNext = NULL;
|
||||
|
||||
ival = 0;
|
||||
fval = 0;
|
||||
sval = typeValueEmpty;
|
||||
bufferLen = 0;
|
||||
}
|
||||
|
||||
Entry(StringTableEntry name);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue