libretro: add (psx) exe and iso to valid_extensions
authornotaz <notasas@gmail.com>
Sun, 6 Aug 2023 18:01:09 +0000 (21:01 +0300)
committernotaz <notasas@gmail.com>
Sun, 6 Aug 2023 18:06:30 +0000 (21:06 +0300)
doesn't seem to work though?

frontend/libretro.c

index 5d876ae..807e683 100644 (file)
@@ -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;
 }