mirror of
https://github.com/Abdess/retrobios.git
synced 2026-06-21 11:12:47 +00:00
fix: retrodeck bios_path double prefix
This commit is contained in:
parent
97e26103f5
commit
6dbc3f510b
2 changed files with 3 additions and 3 deletions
|
|
@ -192,9 +192,9 @@ def detect_platforms(os_type: str) -> list[tuple[str, Path]]:
|
|||
if retrodeck_cfg.exists():
|
||||
bios_path = _parse_bash_var(retrodeck_cfg, "rdhome")
|
||||
if bios_path:
|
||||
found.append(("retrodeck", Path(bios_path) / "bios"))
|
||||
found.append(("retrodeck", Path(bios_path)))
|
||||
else:
|
||||
found.append(("retrodeck", home / "retrodeck" / "bios"))
|
||||
found.append(("retrodeck", home / "retrodeck"))
|
||||
|
||||
# RetroArch Flatpak
|
||||
flatpak_cfg = home / ".var" / "app" / "org.libretro.RetroArch" / "config" / "retroarch" / "retroarch.cfg"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue