notaz.gp2x.de
/
pcsx_rearmed.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0885f2f
)
Added support for PSXONPSP660.bin and psx* named BIOS files
author
dankcushions
<chris.bransden@gmail.com>
Wed, 21 Aug 2019 22:47:11 +0000
(23:47 +0100)
committer
dankcushions
<chris.bransden@gmail.com>
Wed, 21 Aug 2019 22:47:11 +0000
(23:47 +0100)
frontend/libretro.c
patch
|
blob
|
blame
|
history
diff --git
a/frontend/libretro.c
b/frontend/libretro.c
index
d8f9766
..
081f8ba
100644
(file)
--- a/
frontend/libretro.c
+++ b/
frontend/libretro.c
@@
-2078,7
+2078,7
@@
static bool find_any_bios(const char *dirpath, char *path, size_t path_size)
return false;
while ((ent = readdir(dir))) {
- if (
strncasecmp(ent->d_name, "scph", 4) != 0
)
+ if (
(strncasecmp(ent->d_name, "scph", 4) != 0) && (strncasecmp(ent->d_name, "psx", 3) != 0)
)
continue;
snprintf(path, path_size, "%s%c%s", dirpath, SLASH, ent->d_name);
@@
-2144,6
+2144,7
@@
static void loadPSXBios(void)
unsigned useHLE = 0;
const char *bios[] = {
+ "PSXONPSP660", "psxonpsp660",
"SCPH101", "scph101",
"SCPH5501", "scph5501",
"SCPH7001", "scph7001",