diff --git a/README.md b/README.md index f7099b747..1696c8687 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/src/duckstation-libretro/main.cpp b/src/duckstation-libretro/main.cpp index c5e5ebcef..773a54a60 100644 --- a/src/duckstation-libretro/main.cpp +++ b/src/duckstation-libretro/main.cpp @@ -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; }