summaryrefslogtreecommitdiff
path: root/src/components/GameConfigurationControls.tsx
diff options
context:
space:
mode:
authorKurt Himebauch <136133082+xXJSONDeruloXx@users.noreply.github.com>2026-09-10 15:44:26 -0400
committerKurt Himebauch <136133082+xXJSONDeruloXx@users.noreply.github.com>2026-09-10 15:44:26 -0400
commitc46d41b22df8a6830fe4483ba1b71e246b4ae5e6 (patch)
treec1aa102d72184c987ca29596ea3bd5ede75c2b70 /src/components/GameConfigurationControls.tsx
parent05bde72a64bd3fbf675e15e273043090f79d0a49 (diff)
downloaddecky-lsfg-vk-c46d41b22df8a6830fe4483ba1b71e246b4ae5e6.tar.gz
decky-lsfg-vk-c46d41b22df8a6830fe4483ba1b71e246b4ae5e6.zip
refactor: pass direct flatpak launch shape
Diffstat (limited to 'src/components/GameConfigurationControls.tsx')
-rw-r--r--src/components/GameConfigurationControls.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/GameConfigurationControls.tsx b/src/components/GameConfigurationControls.tsx
index 6bea2e0..a7e3fec 100644
--- a/src/components/GameConfigurationControls.tsx
+++ b/src/components/GameConfigurationControls.tsx
@@ -10,7 +10,7 @@ interface Props {
autoFocusFpsMultiplier?: boolean;
onFpsMultiplierFocused?: () => void;
showWorkarounds?: boolean;
- workaroundTarget?: Pick<GameTarget, "appid" | "nonSteam" | "transport">;
+ workaroundTarget?: Pick<GameTarget, "appid" | "nonSteam" | "directFlatpak">;
onRepairWorkaround?: () => Promise<boolean>;
}
@@ -36,7 +36,7 @@ export function GameConfigurationControls({
<WorkaroundsSection
appId={workaroundTarget.appid}
nonSteam={workaroundTarget.nonSteam}
- transport={workaroundTarget.transport}
+ directFlatpak={workaroundTarget.directFlatpak === true}
onRepair={onRepairWorkaround}
/>
)}