From 6dbc3f510bf2f183605dec438f8b859d00a54780 Mon Sep 17 00:00:00 2001 From: Abdessamad Derraz <3028866+Abdess@users.noreply.github.com> Date: Fri, 3 Apr 2026 11:07:46 +0200 Subject: [PATCH] fix: retrodeck bios_path double prefix --- install.py | 4 ++-- platforms/_registry.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/install.py b/install.py index 531a8774..4a28cea6 100644 --- a/install.py +++ b/install.py @@ -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" diff --git a/platforms/_registry.yml b/platforms/_registry.yml index eff61e0e..760d1522 100644 --- a/platforms/_registry.yml +++ b/platforms/_registry.yml @@ -752,7 +752,7 @@ platforms: - os: linux method: path_exists path: $HOME/.var/app/net.retrodeck.retrodeck - bios_path: $HOME/retrodeck/bios + bios_path: $HOME/retrodeck romm: config: romm.yml status: active