From: notaz Date: Sun, 6 Aug 2023 18:01:09 +0000 (+0300) Subject: libretro: add (psx) exe and iso to valid_extensions X-Git-Tag: r24~217 X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?p=pcsx_rearmed.git;a=commitdiff_plain;h=0cae7d24abf2c13dead4295067785d3ba961faa4 libretro: add (psx) exe and iso to valid_extensions doesn't seem to work though? --- diff --git a/frontend/libretro.c b/frontend/libretro.c index 5d876ae4..807e683f 100644 --- a/frontend/libretro.c +++ b/frontend/libretro.c @@ -870,7 +870,7 @@ void retro_get_system_info(struct retro_system_info *info) memset(info, 0, sizeof(*info)); info->library_name = "PCSX-ReARMed"; info->library_version = "r23l" GIT_VERSION; - info->valid_extensions = "bin|cue|img|mdf|pbp|toc|cbn|m3u|chd"; + info->valid_extensions = "bin|cue|img|mdf|pbp|toc|cbn|m3u|chd|iso|exe"; info->need_fullpath = true; }