Log where config file is loaded from.

This commit is contained in:
Themaister 2013-01-09 13:31:41 +01:00
parent f739fc875e
commit 1a0c3ead4d

View File

@ -315,9 +315,15 @@ static void parse_config_file(void)
{
bool ret;
if (*g_extern.config_path)
{
RARCH_LOG("Loading config from: %s.\n", g_extern.config_path);
ret = config_load_file(g_extern.config_path);
}
else
{
RARCH_LOG("Loading NULL config.\n");
ret = config_load_file(NULL);
}
if (!ret)
{