diff options
author | Alcaro | 2017-01-29 20:24:32 +0100 |
---|---|---|
committer | GitHub | 2017-01-29 20:24:32 +0100 |
commit | 731139fbfd9fb303f2c5c050f9ff528878bc1371 (patch) | |
tree | 200186a20bfbc9d78e6d28ae7b879cfaed25d944 /frontend/libretro.c | |
parent | b816fab00204011a58f0b88f35602866ca4268f7 (diff) | |
parent | b629f6cc08ec0220c622ccee3382d86ab6e1650d (diff) | |
download | pcsx_rearmed-731139fbfd9fb303f2c5c050f9ff528878bc1371.tar.gz pcsx_rearmed-731139fbfd9fb303f2c5c050f9ff528878bc1371.tar.bz2 pcsx_rearmed-731139fbfd9fb303f2c5c050f9ff528878bc1371.zip |
Merge pull request #99 from orbea/revert-97-error
Revert "return false if info is NULL inside retro_load_game"
Diffstat (limited to 'frontend/libretro.c')
-rw-r--r-- | frontend/libretro.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/frontend/libretro.c b/frontend/libretro.c index 659b3ce..10e9694 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); |