mirror of
https://github.com/libretro/RetroArch
synced 2025-04-04 04:20:29 +00:00
Log where config file is loaded from.
This commit is contained in:
parent
f739fc875e
commit
1a0c3ead4d
@ -315,9 +315,15 @@ static void parse_config_file(void)
|
|||||||
{
|
{
|
||||||
bool ret;
|
bool ret;
|
||||||
if (*g_extern.config_path)
|
if (*g_extern.config_path)
|
||||||
|
{
|
||||||
|
RARCH_LOG("Loading config from: %s.\n", g_extern.config_path);
|
||||||
ret = config_load_file(g_extern.config_path);
|
ret = config_load_file(g_extern.config_path);
|
||||||
|
}
|
||||||
else
|
else
|
||||||
|
{
|
||||||
|
RARCH_LOG("Loading NULL config.\n");
|
||||||
ret = config_load_file(NULL);
|
ret = config_load_file(NULL);
|
||||||
|
}
|
||||||
|
|
||||||
if (!ret)
|
if (!ret)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user