From b85b72a36d0a623921ddd859527b6721ff911ad7 Mon Sep 17 00:00:00 2001 From: notaz Date: Fri, 4 Aug 2023 00:25:21 +0300 Subject: [PATCH 1/1] libretro: accept ps1_rom.bin (and similar) bios too --- frontend/libretro.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/libretro.c b/frontend/libretro.c index d91b8079..9d796f78 100644 --- a/frontend/libretro.c +++ b/frontend/libretro.c @@ -2819,7 +2819,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; -- 2.39.2