mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-12 23:24:41 +00:00
uninitialized variables-core-2
(cherry picked from commit 7c329699e4e4d13a164b2483e174b5f555ea9344)
This commit is contained in:
parent
b6c33bdd2b
commit
bfcc83638d
8 changed files with 12 additions and 6 deletions
|
|
@ -48,9 +48,9 @@ class OggTheoraFrame : public RawData
|
|||
|
||||
typedef RawData Parent;
|
||||
|
||||
OggTheoraFrame() {}
|
||||
OggTheoraFrame() :mFrameNumber(0), mFrameTime(0), mFrameDuration(0) {}
|
||||
OggTheoraFrame( S8* data, U32 size, bool ownMemory = false )
|
||||
: Parent( data, size, ownMemory ) {}
|
||||
: Parent( data, size, ownMemory ), mFrameNumber(0), mFrameTime(0), mFrameDuration(0) {}
|
||||
|
||||
/// Serial number of this frame in the stream.
|
||||
U32 mFrameNumber;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue