mirror of
https://github.com/libretro/RetroArch.git
synced 2025-04-02 10:51:52 -04:00
Avoid warning 'variable may be used uninitialized'
This commit is contained in:
parent
1fa36689d8
commit
114cc081aa
1 changed files with 1 additions and 1 deletions
|
@ -73,7 +73,7 @@ static void input_autoconfigure_joypad_conf(config_file_t *conf,
|
|||
static int input_try_autoconfigure_joypad_from_conf(config_file_t *conf,
|
||||
autoconfig_params_t *params)
|
||||
{
|
||||
int tmp_int;
|
||||
int tmp_int = 0;
|
||||
char ident[PATH_MAX_LENGTH] = {0};
|
||||
char input_driver[PATH_MAX_LENGTH] = {0};
|
||||
int input_vid = 0;
|
||||
|
|
Loading…
Add table
Reference in a new issue