mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-19 22:53:47 +00:00
Fix more misc uninitialized vars
This commit is contained in:
parent
a10e6e99d4
commit
d97d44f66f
5 changed files with 10 additions and 3 deletions
|
|
@ -78,7 +78,10 @@ public:
|
|||
String mValue;
|
||||
bool mIsGroup;
|
||||
|
||||
SettingSaveNode(){};
|
||||
SettingSaveNode()
|
||||
{
|
||||
mIsGroup = false;
|
||||
}
|
||||
SettingSaveNode(const String &name, bool isGroup = false)
|
||||
{
|
||||
mName = name;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue