libretro: Include m3u in valid_extensions

This commit is contained in:
Connor McLaughlin 2020-07-23 02:59:46 +10:00
parent 24deb91f3f
commit a6acd33ce6
2 changed files with 3 additions and 1 deletions

View File

@ -11,6 +11,8 @@ A "BIOS" ROM image is required to to start the emulator and to play games. You c
## Latest News
- 2020/07/23: m3u multi-disc support for libretro core.
- 2020/07/22: Support multiple bindings for each controller button/axis.
- 2020/07/18: Widescreen hack enhancement added.
- 2020/07/04: Vulkan renderer now available in libretro core.
- 2020/07/02: Now available as a libretro core.

View File

@ -36,7 +36,7 @@ RETRO_API void retro_get_system_info(struct retro_system_info* info)
#endif
info->library_version = g_scm_tag_str;
info->valid_extensions = "exe|cue|bin|chd|psf";
info->valid_extensions = "exe|cue|bin|chd|psf|m3u";
info->need_fullpath = true;
info->block_extract = false;
}