diff --git a/Engine/source/console/consoleInternal.cpp b/Engine/source/console/consoleInternal.cpp index bb059f9d6..bd8e230ff 100644 --- a/Engine/source/console/consoleInternal.cpp +++ b/Engine/source/console/consoleInternal.cpp @@ -468,6 +468,7 @@ char *typeValueEmpty = ""; Dictionary::Entry::Entry(StringTableEntry in_name) { name = in_name; + type = TypeInternalString; notify = NULL; nextEntry = NULL; mUsage = NULL; diff --git a/Engine/source/console/consoleInternal.h b/Engine/source/console/consoleInternal.h index 34f6e1a9b..392bf0c3f 100644 --- a/Engine/source/console/consoleInternal.h +++ b/Engine/source/console/consoleInternal.h @@ -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);