mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-13 15:44:36 +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)
|
Dictionary::Entry::Entry(StringTableEntry in_name)
|
||||||
{
|
{
|
||||||
name = in_name;
|
name = in_name;
|
||||||
|
type = TypeInternalString;
|
||||||
notify = NULL;
|
notify = NULL;
|
||||||
nextEntry = NULL;
|
nextEntry = NULL;
|
||||||
mUsage = NULL;
|
mUsage = NULL;
|
||||||
|
|
|
||||||
|
|
@ -344,11 +344,17 @@ public:
|
||||||
|
|
||||||
Entry() {
|
Entry() {
|
||||||
name = NULL;
|
name = NULL;
|
||||||
|
type = TypeInternalString;
|
||||||
notify = NULL;
|
notify = NULL;
|
||||||
nextEntry = NULL;
|
nextEntry = NULL;
|
||||||
mUsage = NULL;
|
mUsage = NULL;
|
||||||
mIsConstant = false;
|
mIsConstant = false;
|
||||||
mNext = NULL;
|
mNext = NULL;
|
||||||
|
|
||||||
|
ival = 0;
|
||||||
|
fval = 0;
|
||||||
|
sval = typeValueEmpty;
|
||||||
|
bufferLen = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
Entry(StringTableEntry name);
|
Entry(StringTableEntry name);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue