1
0
mirror of https://github.com/libretro/RetroArch synced 2025-02-26 06:40:39 +00:00

Merge pull request from fr500/master

potential fix for the overrides crash
This commit is contained in:
Twinaphex 2015-11-17 04:59:11 +01:00
commit ba35355985

@ -1868,7 +1868,7 @@ bool config_load_override(void)
}
/* Early return in case a library isn't loaded */
if (!info->info.library_name || !strcmp(info->info.library_name,"No Core"))
if (!info->info.library_name[0] != '\0' || !strcmp(info->info.library_name,"No Core"))
return false;
RARCH_LOG("Overrides: core name: %s\n", info->info.library_name);