mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-13 11:43:49 +00:00
uninitialized variables-util
This commit is contained in:
parent
9e1c22204f
commit
43259e29c1
2 changed files with 4 additions and 2 deletions
|
|
@ -118,9 +118,9 @@ class CSVSamplerBackend : public ISamplerBackend
|
|||
const char* mString;
|
||||
} mValue;
|
||||
|
||||
SampleRecord() {}
|
||||
SampleRecord() : mKey(0), mSet(false), mType(TypeBool) { mValue.mBool = false; }
|
||||
SampleRecord( U32 key )
|
||||
: mKey( key ), mSet( false ) {}
|
||||
: mKey( key ), mSet( false ), mType(TypeBool) { mValue.mBool = false; }
|
||||
|
||||
void set( bool value )
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue