From: orbea Date: Tue, 24 Jan 2017 23:49:46 +0000 (-0800) Subject: Revert "return false if info is NULL inside retro_load_game" X-Git-Tag: r24l~806^2 X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b629f6cc08ec0220c622ccee3382d86ab6e1650d;p=pcsx_rearmed.git Revert "return false if info is NULL inside retro_load_game" --- diff --git a/frontend/libretro.c b/frontend/libretro.c index 659b3ce4..10e9694d 100644 --- a/frontend/libretro.c +++ b/frontend/libretro.c @@ -1011,9 +1011,6 @@ strcasestr(const char *s, const char*find) bool retro_load_game(const struct retro_game_info *info) { - if (!info) - return false; - size_t i; bool is_m3u = (strcasestr(info->path, ".m3u") != NULL);