From 0968bcc173f17936470091bc43a0b07307452779 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Mon, 16 Jan 2017 09:57:21 +0100 Subject: [PATCH] (menu_input_bind_dialog) Prevent warning --- menu/widgets/menu_input_bind_dialog.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/menu/widgets/menu_input_bind_dialog.c b/menu/widgets/menu_input_bind_dialog.c index c80206d09b..4bfb321dcf 100644 --- a/menu/widgets/menu_input_bind_dialog.c +++ b/menu/widgets/menu_input_bind_dialog.c @@ -381,16 +381,16 @@ bool menu_input_key_bind_set_min_max(menu_input_ctx_bind_limits_t *lim) bool menu_input_key_bind_iterate(menu_input_ctx_bind_t *bind) { - struct menu_bind_state binds; + struct menu_bind_state binds = {0}; /* single binds can have latching issues, * single_bind_delay = 0 (single bind not yet bound) * single_bind_delay = 1 (latching procedure) * single_bind_delay = 2 (second iteration, will quit iteration loop) */ static unsigned single_bind_delay = 0; - bool trigger_found = false; - bool timed_out = false; - settings_t *settings = config_get_ptr(); + bool trigger_found = false; + bool timed_out = false; + settings_t *settings = config_get_ptr(); rarch_timer_tick(&menu_input_binds.timer);