mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-04-21 20:35:35 +00:00
uninitialized variables-console
This commit is contained in:
parent
e9415a0994
commit
2c1508c169
23 changed files with 66 additions and 11 deletions
|
|
@ -62,7 +62,7 @@ public:
|
|||
/// of addition to the list.
|
||||
SimObject *destObject; ///< Object on which this event will be applied.
|
||||
|
||||
SimEvent() { destObject = NULL; }
|
||||
SimEvent() { nextEvent = NULL; startTime = 0; time = 0; sequenceCount = 0; destObject = NULL; }
|
||||
virtual ~SimEvent() {} ///< Destructor
|
||||
///
|
||||
/// A dummy virtual destructor is required
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue