Parcourir la source

input: fix uninitialised data in the SDL mouse input.

undefined
Sam Hocevar il y a 11 ans
Parent
révision
349559acd9
1 fichiers modifiés avec 2 ajouts et 1 suppressions
  1. +2
    -1
      src/platform/sdl/sdlinput.cpp

+ 2
- 1
src/platform/sdl/sdlinput.cpp Voir le fichier

@@ -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;


Chargement…
Annuler
Enregistrer