diff --git a/dist/info/00_example_libretro.info b/dist/info/00_example_libretro.info index b014f719..452d7c77 100644 --- a/dist/info/00_example_libretro.info +++ b/dist/info/00_example_libretro.info @@ -75,6 +75,8 @@ # database = "Nintendo - Nintendo Entertainment System|Nintendo - Famicom Disk System" # Does the core support/require support for libretro-gl or other hardware-acceleration in the frontend? # hw_render = "false" +# Which hardware-rendering APIs does the core support? Delimited by pipe characters. +required_hw_api = "Vulkan >= 1.0 | Direct3D >= 10.0 | OpenGL Core >= 3.3 | OpenGL ES >= 3.0" # Does the core require ongoing access to the file after loading? Mostly used for softpatching and streaming of data # needs_fullpath = "false" # Does the core support the libretro disk control interface for swapping disks on the fly? diff --git a/dist/info/dolphin_libretro.info b/dist/info/dolphin_libretro.info index 289814e7..b8f40b41 100644 --- a/dist/info/dolphin_libretro.info +++ b/dist/info/dolphin_libretro.info @@ -26,7 +26,7 @@ core_options = "true" core_options_version = "1.0" load_subsystem = "false" hw_render = "true" -required_hw_api = "OpenGL >= 3.0 | OpenGL Core >= 3.3 | OpenGL ES >= 3.0 | Vulkan >= 1.0 | Direct3D >= 10.0" +required_hw_api = "Vulkan >= 1.0 | Direct3D >= 10.0 | OpenGL Core >= 3.3 | OpenGL ES >= 3.0" needs_fullpath = "true" disk_control = "false" is_experimental = "false" diff --git a/dist/info/pcsx2_libretro.info b/dist/info/pcsx2_libretro.info index c9f73e4b..6c30d8c4 100644 --- a/dist/info/pcsx2_libretro.info +++ b/dist/info/pcsx2_libretro.info @@ -17,5 +17,21 @@ systemid = "playstation2" database = "Sony - PlayStation 2" supports_no_game = "false" needs_fullpath = "true" +load_subsystem = "false" +hw_render = "true" +required_hw_api = "Direct3D >= 11.0 | OpenGL Core >= 3.3 | OpenGL >= 3.0" +savestate = "false" +memory_descriptors = "false" -description = "A port of the mature and highly-compatible PCSX2 Playstation 2 emulator to libretro. This core is a good first choice for most users as compared with the Play! core, which has lower compatibility with the PS2 library." +# Firmware / BIOS +firmware_count = 2 +firmware0_desc = "Encrypted DVD Player software" +firmware0_path = "PCSX2/bios/EROM.BIN" +firmware0_opt = "false" +firmware1_desc = "BIOS Additions" +firmware1_path = "PCSX2/bios/rom1.bin" +firmware1_opt = "false" + +notes = "(!) EROM.BIN (md5): 9a9e8ed7668e6adfc8f7766c08ab9cd0|(!) rom1.bin (md5): 44552702b05697a14ccbe2ca22ee7139" + +description = "A port of the mature and highly-compatible PCSX2 Playstation 2 emulator to libretro. This core is a good first choice for most users as compared with the Play! core, which has lower compatibility with the PS2 library. Required BIOS files include EROM.BIN, rom1.bin, and at least one set of scph*.bin/.mec/.nvm dumps that match each region of games you wish to run. A newer BIOS than scph10000 is recommended, as this original BIOS has problems in memory card emulation and other sections."