This website works better with JavaScript.
Home
Help
Sign In
lolengine
/
lol
mirror of
https://github.com/lolengine/lol
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
0
Wiki
Activity
Browse Source
input: fix uninitialised variable.
legacy
Sam Hocevar
8 years ago
parent
a3a802e88f
commit
3544e76a4d
1 changed files
with
3 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+3
-1
src/input/input.h
+ 3
- 1
src/input/input.h
View File
@@ -211,7 +211,9 @@ protected:
static bool m_capturemouse;
InputDevice(String const &name) : m_name(name)
InputDevice(String const &name)
: m_name(name),
m_input_active(false)
{
devices.push_unique(this);
}
Write
Preview
Loading…
Cancel
Save