From a6acd33ce65690b7a2766a26ac617082a0d5be28 Mon Sep 17 00:00:00 2001 From: Connor McLaughlin <stenzek@gmail.com> Date: Thu, 23 Jul 2020 02:59:46 +1000 Subject: [PATCH] libretro: Include m3u in valid_extensions --- README.md | 2 ++ src/duckstation-libretro/main.cpp | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) 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; }