This commit is contained in:
twinaphex 2020-02-29 14:37:52 +01:00
parent a326be71f3
commit c4583a62fb
1 changed files with 7 additions and 7 deletions

View File

@ -104,7 +104,7 @@ bool input_remapping_load_file(void *data, const char *path)
k = j - RARCH_FIRST_CUSTOM_BIND; k = j - RARCH_FIRST_CUSTOM_BIND;
fill_pathname_join_delim(stk_ident[k], s3, fill_pathname_join_delim(stk_ident[k], s3,
key_strings[j], '$', sizeof(stk_ident[k])); key_strings[j], '$', sizeof(stk_ident[k]));
snprintf(stk_ident[k], snprintf(stk_ident[k],
sizeof(stk_ident[k]), sizeof(stk_ident[k]),
@ -112,13 +112,13 @@ bool input_remapping_load_file(void *data, const char *path)
s3, s3,
key_strings[j]); key_strings[j]);
if (config_get_int(conf, stk_ident[k], &stk_remap) if (config_get_int(conf, stk_ident[k], &stk_remap))
&& stk_remap != -1) {
if (stk_remap == -1)
stk_remap = RARCH_UNMAPPED;
settings->uints.input_remap_ids[i][j] = stk_remap; settings->uints.input_remap_ids[i][j] = stk_remap;
else if (config_get_int(conf, stk_ident[k], &stk_remap) }
&& stk_remap == -1)
settings->uints.input_remap_ids[i][j] = RARCH_UNMAPPED;
/* else do nothing, important */
} }
} }