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 data in the SDL mouse input.
undefined
Sam Hocevar
11 years ago
parent
aab8ecfd3e
commit
349559acd9
1 changed files
with
2 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-1
src/platform/sdl/sdlinput.cpp
+ 2
- 1
src/platform/sdl/sdlinput.cpp
View File
@@ -52,7 +52,8 @@ private:
m_app_w((float)app_w),
m_app_h((float)app_h),
m_screen_w((float)screen_w),
m_screen_h((float)screen_h)
m_screen_h((float)screen_h),
m_mousecapture(false)
{ }
Array<SDL_Joystick*, InputDeviceInternal*> m_joysticks;
Write
Preview
Loading…
Cancel
Save