mirror of
https://github.com/libretro/RetroArch
synced 2025-03-03 13:14:04 +00:00
(input_config.c) Get rid of implicit memset
This commit is contained in:
parent
8caa21ef98
commit
d2b3762db8
@ -299,11 +299,11 @@ void input_config_parse_joy_button(void *data, const char *prefix,
|
||||
char str[256];
|
||||
char tmp[64];
|
||||
char key[64];
|
||||
char key_label[64] = {0};
|
||||
char key_label[64];
|
||||
char *tmp_a = NULL;
|
||||
config_file_t *conf = (config_file_t*)data;
|
||||
|
||||
str[0] = tmp[0] = key[0] = '\0';
|
||||
str[0] = tmp[0] = key[0] = key_label[0] = '\0';
|
||||
|
||||
fill_pathname_join_delim(str, prefix, btn,
|
||||
'_', sizeof(str));
|
||||
|
Loading…
x
Reference in New Issue
Block a user