Update logs
This commit is contained in:
parent
f4071ba6ec
commit
d5821c7f61
|
@ -229,7 +229,7 @@ static bool input_autoconfigure_joypad_from_conf_dir(
|
||||||
if(!list)
|
if(!list)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
RARCH_LOG("Autodetect: %d profiles found.\n", list->size);
|
RARCH_LOG("[Autodetect]: %d profiles found.\n", list->size);
|
||||||
|
|
||||||
for (i = 0; i < list->size; i++)
|
for (i = 0; i < list->size; i++)
|
||||||
{
|
{
|
||||||
|
@ -258,7 +258,7 @@ static bool input_autoconfigure_joypad_from_conf_dir(
|
||||||
|
|
||||||
config_get_config_path(conf, conf_path, sizeof(conf_path));
|
config_get_config_path(conf, conf_path, sizeof(conf_path));
|
||||||
|
|
||||||
RARCH_LOG("Autodetect: selected configuration: %s\n", conf_path);
|
RARCH_LOG("[Autodetect]: selected configuration: %s\n", conf_path);
|
||||||
input_autoconfigure_joypad_add(conf, params, task);
|
input_autoconfigure_joypad_add(conf, params, task);
|
||||||
config_file_free(conf);
|
config_file_free(conf);
|
||||||
ret = 1;
|
ret = 1;
|
||||||
|
@ -307,7 +307,7 @@ static void input_autoconfigure_connect_handler(retro_task_t *task)
|
||||||
|
|
||||||
msg[0] = '\0';
|
msg[0] = '\0';
|
||||||
#ifndef ANDROID
|
#ifndef ANDROID
|
||||||
RARCH_LOG("Autodetect: no profiles found for %s (%d/%d).\n",
|
RARCH_LOG("[Autodetect]: no profiles found for %s (%d/%d).\n",
|
||||||
params->name, params->vid, params->pid);
|
params->name, params->vid, params->pid);
|
||||||
|
|
||||||
snprintf(msg, sizeof(msg), "%s (%ld/%ld) %s.",
|
snprintf(msg, sizeof(msg), "%s (%ld/%ld) %s.",
|
||||||
|
@ -317,7 +317,7 @@ static void input_autoconfigure_connect_handler(retro_task_t *task)
|
||||||
strlcpy(params->name, "Android Gamepad", sizeof(params->name));
|
strlcpy(params->name, "Android Gamepad", sizeof(params->name));
|
||||||
if(input_autoconfigure_joypad_from_conf_internal(params, task))
|
if(input_autoconfigure_joypad_from_conf_internal(params, task))
|
||||||
{
|
{
|
||||||
RARCH_LOG("Autodetect: no profiles found for %s (%d/%d). Using fallback\n",
|
RARCH_LOG("[Autodetect]: no profiles found for %s (%d/%d). Using fallback\n",
|
||||||
params->name, params->vid, params->pid);
|
params->name, params->vid, params->pid);
|
||||||
|
|
||||||
snprintf(msg, sizeof(msg), "%s (%ld/%ld) %s.",
|
snprintf(msg, sizeof(msg), "%s (%ld/%ld) %s.",
|
||||||
|
|
Loading…
Reference in New Issue