mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-12 19:31:41 +00:00
uninitialized variables-platform
(cherry picked from commit 36fd324de7a29a8f4bb84b7622ae925acb1d3760)
This commit is contained in:
parent
bfcc83638d
commit
bd8a72005e
7 changed files with 17 additions and 6 deletions
|
|
@ -164,9 +164,7 @@ class AsyncPacketQueue
|
|||
mConsumer( consumer )
|
||||
|
||||
{
|
||||
#ifdef TORQUE_DEBUG
|
||||
mTotalQueuedPackets = 0;
|
||||
#endif
|
||||
}
|
||||
|
||||
/// Return true if there are currently
|
||||
|
|
|
|||
|
|
@ -54,6 +54,7 @@ FileDialogData::FileDialogData()
|
|||
mTitle = StringTable->EmptyString();
|
||||
|
||||
mStyle = 0;
|
||||
mOpaqueData = NULL;
|
||||
|
||||
}
|
||||
FileDialogData::~FileDialogData()
|
||||
|
|
@ -123,6 +124,7 @@ FileDialog::FileDialog() : mData()
|
|||
mData.mStyle = FileDialogData::FDS_OPEN | FileDialogData::FDS_MUSTEXIST;
|
||||
mChangePath = false;
|
||||
mForceRelativePath = true;
|
||||
mBoolTranslator = false;
|
||||
}
|
||||
|
||||
FileDialog::~FileDialog()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue