Set these static variables initially to NULL
This commit is contained in:
parent
5b74105add
commit
12e453c29a
|
@ -91,15 +91,15 @@ struct turbo_buttons
|
||||||
unsigned count;
|
unsigned count;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static turbo_buttons_t input_driver_turbo_btns;
|
||||||
#ifdef HAVE_COMMAND
|
#ifdef HAVE_COMMAND
|
||||||
static rarch_cmd_t *input_driver_command;
|
static rarch_cmd_t *input_driver_command = NULL;
|
||||||
#endif
|
#endif
|
||||||
#ifdef HAVE_NETWORK_GAMEPAD
|
#ifdef HAVE_NETWORK_GAMEPAD
|
||||||
static rarch_remote_t *input_driver_remote;
|
static rarch_remote_t *input_driver_remote = NULL;
|
||||||
#endif
|
#endif
|
||||||
static const input_driver_t *current_input;
|
static const input_driver_t *current_input = NULL;
|
||||||
static void *current_input_data;
|
static void *current_input_data = NULL;
|
||||||
static turbo_buttons_t input_driver_turbo_btns;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* input_driver_find_handle:
|
* input_driver_find_handle:
|
||||||
|
|
Loading…
Reference in New Issue