libretro: Include m3u in valid_extensions
This commit is contained in:
parent
24deb91f3f
commit
a6acd33ce6
|
@ -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.
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue