mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-24 17:13:54 +00:00
uninitialized and unused value cleanups
(cherry picked from commit 1f08602cf0ad84409cd8b3520510f9c6ce7d5f9c)
This commit is contained in:
parent
1230d0d280
commit
0d4221fa59
38 changed files with 176 additions and 360 deletions
|
|
@ -66,10 +66,10 @@ class WindowInputGenerator
|
|||
/// Accelerator key map
|
||||
struct AccKeyMap
|
||||
{
|
||||
void *hnd;
|
||||
void *hnd = NULL;
|
||||
String cmd;
|
||||
U32 keyCode;
|
||||
U32 modifier;
|
||||
U32 keyCode = 0x000;
|
||||
U32 modifier = 0x000;
|
||||
};
|
||||
Vector <AccKeyMap> mAcceleratorMap;
|
||||
|
||||
|
|
@ -128,4 +128,4 @@ class WindowInputGenerator
|
|||
}
|
||||
};
|
||||
|
||||
#endif // _WINDOW_INPUTGENERATOR_H_
|
||||
#endif // _WINDOW_INPUTGENERATOR_H_
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue