From 55e5dc83dc139dffa5d4c4e617ef837af96aeefe Mon Sep 17 00:00:00 2001 From: radius Date: Sun, 9 Aug 2015 11:47:42 -0500 Subject: [PATCH] print an OSD message when no profiles found --- input/input_autodetect.c | 1 + 1 file changed, 1 insertion(+) diff --git a/input/input_autodetect.c b/input/input_autodetect.c index 09614eac17..76ad8dd856 100644 --- a/input/input_autodetect.c +++ b/input/input_autodetect.c @@ -228,6 +228,7 @@ static bool input_autoconfigure_joypad_from_conf_dir( { RARCH_LOG("Autoconf: no profiles found for %s (%d/%d)", params->name, params->vid, params->pid); snprintf(msg, sizeof(msg), "%s (%d/%d) not configured", parms->name, params->vid, params->pid); + rarch_main_msg_queue_push(msg, 0, 60, false); ret = 0; } string_list_free(list);