From 793080b0c134ae488d53db30665426f5276217f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Orkun=20=C5=9Eensebat?= Date: Tue, 7 Apr 2015 00:48:46 +0200 Subject: [PATCH] Add log output in case no library loaded when trying to use override --- configuration.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/configuration.c b/configuration.c index 0ae21657ab..3f1358414a 100644 --- a/configuration.c +++ b/configuration.c @@ -1662,7 +1662,10 @@ bool config_load_override(void) //early return in case a library isn't loaded if(!global->system.info.library_name || !strcmp(global->system.info.library_name,"No Core")) + { + RARCH_LOG("No library loaded, not using overrides.\n"); return true; + } RARCH_LOG("Game name: %s\n",global->basename); RARCH_LOG("Core name: %s\n",global->system.info.library_name);