diff options
Diffstat (limited to 'core/input/input.h')
-rw-r--r-- | core/input/input.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/core/input/input.h b/core/input/input.h index ac688b53b8..42016f2417 100644 --- a/core/input/input.h +++ b/core/input/input.h @@ -157,9 +157,9 @@ private: }; struct JoyEvent { - int type; - int index; // Can be either JoyAxis or JoyButton. - float value; + int type = TYPE_MAX; + int index = -1; // Can be either JoyAxis or JoyButton. + float value = 0.f; }; struct JoyBinding { @@ -331,6 +331,7 @@ public: void set_event_dispatch_function(EventDispatchFunc p_function); Input(); + ~Input(); }; VARIANT_ENUM_CAST(Input::MouseMode); |