From 6b6e764749041a6b39c195445f53c131fe54dbc3 Mon Sep 17 00:00:00 2001 From: notaz Date: Fri, 4 Aug 2023 00:25:21 +0300 Subject: [PATCH] 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 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; -- 2.39.2