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: r24l~257 X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cb065acce601586fc3d0f0e925e788ca0701c414;p=pcsx_rearmed.git 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 9c2684b6..3fc594b8 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; }