mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-04-22 12:55:34 +00:00
Fix uninit vars in gui
This commit is contained in:
parent
81e7dafb94
commit
2fc1ac4816
4 changed files with 12 additions and 3 deletions
|
|
@ -94,9 +94,11 @@ extern InputModifiers convertModifierBits(const U32 in);
|
|||
//-----------------------------------------------------------------------------
|
||||
|
||||
GuiCanvas::GuiCanvas(): GuiControl(),
|
||||
mCurUpdateRect(0, 0, 0, 0),
|
||||
mCursorEnabled(true),
|
||||
mForceMouseToGUI(false),
|
||||
mAlwaysHandleMouseButtons(false),
|
||||
mCursorChanged(0),
|
||||
mClampTorqueCursor(true),
|
||||
mShowCursor(true),
|
||||
mLastCursorEnabled(false),
|
||||
|
|
@ -120,6 +122,7 @@ GuiCanvas::GuiCanvas(): GuiControl(),
|
|||
mLeftMouseLast(false),
|
||||
mMiddleMouseLast(false),
|
||||
mRightMouseLast(false),
|
||||
mMouseDownPoint(0.0f,0.0f),
|
||||
mPlatformWindow(NULL),
|
||||
mLastRenderMs(0),
|
||||
mDisplayWindow(true)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue