From: notaz Date: Thu, 3 Aug 2023 21:25:21 +0000 (+0300) Subject: libretro: accept ps1_rom.bin (and similar) bios too X-Git-Tag: r24~221 X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?p=pcsx_rearmed.git;a=commitdiff_plain;h=6b6e764749041a6b39c195445f53c131fe54dbc3 libretro: accept ps1_rom.bin (and similar) bios too --- diff --git a/frontend/libretro.c b/frontend/libretro.c index 2f758a6c..98eea829 100644 --- a/frontend/libretro.c +++ b/frontend/libretro.c @@ -2817,7 +2817,7 @@ static bool try_use_bios(const char *path) static bool find_any_bios(const char *dirpath, char *path, size_t path_size) { - static const char *substrings[] = { "scph", "psx", "openbios" }; + static const char *substrings[] = { "scph", "ps", "openbios" }; DIR *dir; struct dirent *ent; bool ret = false;